C#获取屏幕大小从而设置窗体大小

using System.Drawing;

public Form1()
{
	InitializeComponent();
	//在需要更改窗体大小的页面增加以下代码
	Rectangle rect = new Rectangle();    //Rectangle 存储一组整数,共四个,表示一个矩形的位置和大小
	rect = Screen.GetWorkingArea(this);
	this.Width = rect.Width - 100;
	this.Height = rect.Height - 50;
}
  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 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、付费专栏及课程。

余额充值