这个怎么在VS里编译
https://www.baidu.com/s?ie=utf-8&f=8&rsv_bp=1&rsv_idx=1&tn=baidu&wd=C%23%E8%B0%83%E6%95%B4%E7%AA%97%E5%8F%A3%E4%BD%8D%E7%BD%AE%E4%BB%A3%E7%A0%81&fenlei=256&rsv_pq=0x96fee92c000065c5&rsv_t=afe4uXi%2BagRWg5%2FkIv23lsBUCME3cAmPUEib4RMw94%2BbRFhh9DKFR45GzkY&rqlang=en&rsv_dl=tb&rsv_enter=1&rsv_sug3=20&rsv_sug1=19&rsv_sug7=101&rsv_sug2=0&rsv_btype=i&prefixsug=%2526lt%253B%2523%25E8%25B0%2583%25E6%2595%25B4%25E7%25AA%2597%25E5%258F%25A3%25E4%25BD%258D%25E7%25BD%25AE%25E4%25BB%25A3%25E7%25A0%2581&rsp=5&inputT=12808&rsv_sug4=15370在百度找了一个调整窗口位置的代码,不知道怎么把它放在新建的Windows 窗体应用程序的Form1代码里。
请知道的,指点一下,谢谢
程序代码:
using System; using System.Drawing; // 用于Point结构 using System.Windows.Forms; // 用于窗体 public class MoveWindowExample : Form { public MoveWindowExample() { this.StartPosition = FormStartPosition.Manual; // 手动设置窗体启动位置 } [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); // 创建窗体实例 MoveWindowExample moveWindowForm = new MoveWindowExample(); // 设置窗体新位置 moveWindowForm.Location = new Point(100, 100); // 将窗体移动到屏幕上(100,100)的位置 // 显示窗体 Application.Run(moveWindowForm); } }