问题描述
不要手动拖过去,运行起来自动在扩展屏上运行,C#不行的话,MFC也行,谢谢大家!或者有没有办法使程序实现按ctrl+win+->(左向键)或<-(右向键)的功能?因为要实现开机自动运行,so.......
解决方案
解决方案二:
是shift+win+->(左向键)或<-(右向键),不是ctrl
解决方案三:
staticvoidMain(){Application.EnableVisualStyles();Application.SetCompatibleTextRenderingDefault(false);varformInstance=newForm1();formInstance.Left=Screen.AllScreens[1].Bounds.X;formInstance.Top=Screen.AllScreens[1].Bounds.Y;formInstance.StartPosition=FormStartPosition.Manual;Application.Run(formInstance);}请自行加入判断哪个屏是扩展屏,还有调整窗口位置的代码。
时间: 2025-01-26 17:05:04