Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以在一个项目中运行 2 个窗口?我想使用它,因为我的程序需要在投影屏幕上运行,并且需要在另一个屏幕上更改数据,不允许观看投影屏幕的人看到。
谢谢你的时间 !
是的。
当您的应用程序启动时,您可以显示多个表单。这是假设您使用的是双显示器,其中一个在投影仪上镜像。
例如:
主窗体:
MainForm_Load(object sender, EventArgs args) { Form1 form1 = new Form1(); Form2 form2 = new Form2(); form1.Show(); //Set location to screen 1 form2.Show(); //Set location to screen 2 }