gpt4 book ai didi

c# - 全屏 c# windows 窗体覆盖所有显示器

转载 作者:太空宇宙 更新时间:2023-11-03 20:25:01 25 4
gpt4 key购买 nike

有没有办法让 Windows 窗体应用程序全屏显示并关闭您的辅助显示器?所以主显示器在您的主显示器上,而您所有其他显示器都是全黑的?

最佳答案

您可以使用 Screen 类,它为您提供有关当前事件屏幕的信息。

// Form myFrm
Rectangle r = new Rectangle();
foreach (Screen s in Screen.AllScreens)
{
if ( s != Screen.CurrentScreen ) // Blackout only the secondary screens
r = Rectangle.Union(r, s.Bounds);
}
myFrm.Top = r.Top;
myFrm.Left = r.Left;
myFrm.Width = r.Width;
myFrm.Height = r.Height;
myFrm.TopMost = true; // This will bring your window in front of all other windows including the taskbar

关于c# - 全屏 c# windows 窗体覆盖所有显示器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11091770/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com