C#如何获得屏幕宽度和高度

Rectangle ScreenArea = System.Windows.Forms.Screen.GetWorkingArea(this);
int width1 = ScreenArea.Width; //屏幕宽度 
int height1 = ScreenArea.Height; //屏幕高度
this.Location = new System.Drawing.Point(width1 - 窗体宽度, height1 - 窗体高度); //指定窗体显示在右下角


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
C#中调用EnumDisplayMonitors和GetMonitorInfo函数获取屏幕大小,您可以使用以下代码: ```csharp using System; using System.Collections.Generic; using System.Runtime.InteropServices; using System.Drawing; class Program { [DllImport("user32.dll")] static extern bool EnumDisplayMonitors(IntPtr hdc, IntPtr lprcClip, EnumMonitorsDelegate lpfnEnum, IntPtr dwData); [DllImport("user32.dll")] static extern bool GetMonitorInfo(IntPtr hMonitor, ref MonitorInfoEx lpmi); delegate bool EnumMonitorsDelegate(IntPtr hMonitor, IntPtr hdcMonitor, ref Rect lprcMonitor, IntPtr dwData); [StructLayout(LayoutKind.Sequential)] public struct Rect { public int left; public int top; public int right; public int bottom; } [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Auto)] public struct MonitorInfoEx { public int cbSize; public Rect rcMonitor; public Rect rcWork; public uint dwFlags; [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 32)] public string szDevice; } static bool MonitorEnumProc(IntPtr hMonitor, IntPtr hdcMonitor, ref Rect lprcMonitor, IntPtr dwData) { MonitorInfoEx mi = new MonitorInfoEx(); mi.cbSize = Marshal.SizeOf(mi); GetMonitorInfo(hMonitor, ref mi); int width = mi.rcMonitor.right - mi.rcMonitor.left; int height = mi.rcMonitor.bottom - mi.rcMonitor.top; Console.WriteLine("Screen width: " + width + ", height: " + height); return true; } static void Main(string[] args) { EnumDisplayMonitors(IntPtr.Zero, IntPtr.Zero, MonitorEnumProc, IntPtr.Zero); } } ``` 该代码使用EnumDisplayMonitors函数枚举所有屏幕,并使用GetMonitorInfo函数获取每个屏幕的大小。然后将屏幕宽度高度打印到控制台中。注意,该示例代码使用了一些Windows API结构体和方法,需要在代码中进行声明和引用。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值