Win 窗体在最大化时消失
Win form vanishes on maximizing
我正在为使用 Windows 表单的应用程序开发 UI。我也参考了 and this one做了一个可调整大小的无边框表格。
我有一台多屏幕电脑。当我在主屏幕上最大化时,表格会正常最大化。如果我将表单完全移动到我的第二个屏幕,然后使用最大化,表单就会消失。经过调查,我发现即使正确确定了第二个屏幕的 属性 'this.MaximizedBounds' 即 {X=-1440,Y=0,Width=1440,Height=900} 当我使用语句
this.WindowState = FormWindowState.Maximized;
表单在 {X=-2880,Y=0,Width=1440,Height=900} 绘制,好像由于某种原因绘制方向相反?鉴于此我知道我可以以编程方式确定绘制表单,但我想知道我是否缺少设置一些额外的 属性 以确保绘制方向正确?
以编程方式最大化的表单的问题是表单的状态仍然是 FormWindowState.Normal,我无法将其更改为 FormWindowState.Maximized 而不导致 from 在错误的位置重新绘制
使表格无边界的代码
protected override void WndProc(ref Message m)
{
const int RESIZE_HANDLE_SIZE = 10;
switch (m.Msg)
{
case 0x0084/*NCHITTEST*/ :
base.WndProc(ref m);
if ((int)m.Result == 0x01/*HTCLIENT*/)
{
Point screenPoint = new Point(m.LParam.ToInt32());
Point clientPoint = this.PointToClient(screenPoint);
if (clientPoint.Y <= RESIZE_HANDLE_SIZE)
{
if (clientPoint.X <= RESIZE_HANDLE_SIZE)
m.Result = (IntPtr)13/*HTTOPLEFT*/ ;
else if (clientPoint.X < (Size.Width - RESIZE_HANDLE_SIZE))
m.Result = (IntPtr)12/*HTTOP*/ ;
else
m.Result = (IntPtr)14/*HTTOPRIGHT*/ ;
}
else if (clientPoint.Y <= (Size.Height - RESIZE_HANDLE_SIZE))
{
if (clientPoint.X <= RESIZE_HANDLE_SIZE)
m.Result = (IntPtr)10/*HTLEFT*/ ;
else if (clientPoint.X < (Size.Width - RESIZE_HANDLE_SIZE))
m.Result = (IntPtr)2/*HTCAPTION*/ ;
else
m.Result = (IntPtr)11/*HTRIGHT*/ ;
}
else
{
if (clientPoint.X <= RESIZE_HANDLE_SIZE)
m.Result = (IntPtr)16/*HTBOTTOMLEFT*/ ;
else if (clientPoint.X < (Size.Width - RESIZE_HANDLE_SIZE))
m.Result = (IntPtr)15/*HTBOTTOM*/ ;
else
m.Result = (IntPtr)17/*HTBOTTOMRIGHT*/ ;
}
}
return;
}
base.WndProc(ref m);
}
protected override CreateParams CreateParams
{
get
{
CreateParams cp = base.CreateParams;
cp.Style |= 0x20000; // <--- use 0x20000
cp.ClassStyle |= 0x08;
return cp;
}
}
要退出的代码,maximize/restore,最小化
private void button1_Click(object sender, EventArgs e)
{
Application.Exit();
}
private void button2_Click(object sender, EventArgs e)
{
if(this.WindowState==FormWindowState.Normal)
{
this.button2.Image = ((System.Drawing.Image)(Properties.Resources.Restore_Down));
this.MaximizedBounds = Screen.FromHandle(this.Handle).WorkingArea;
this.WindowState = FormWindowState.Maximized;
}
else if(this.WindowState == FormWindowState.Maximized)
{
this.WindowState = FormWindowState.Normal;
this.button2.Image = ((System.Drawing.Image)(Properties.Resources.Maximize));
}
}
private void button3_Click(object sender, EventArgs e)
{
this.WindowState = FormWindowState.Minimized;
}
为什么要用WndProc来实现无边框?
Windows 表单具有 "FormBorderStyle"、
属性
this.FormBorderStyle = FormBorderStyle.None;
那应该是无边界的,也许这种更默认的方法也解决了 window 位置问题
我的假设是您正在创建一个无边框窗体,然后创建您自己的工具栏。这个最大化、最小化和恢复都可以不用WndProc
来实现。只需要三个按钮和它们的点击事件处理程序,就像这样(它也适用于多个显示器):
private void ClickMinimizeButton(object sender, EventArgs e)
{
WindowState = FormWindowState.Minimized;
}
private void ClickRestoreButton(object sender, EventArgs e)
{
WindowState = FormWindowState.Normal;
}
private void ClickMaximizeButton(object sender, EventArgs e)
{
WindowState = FormWindowState.Maximized;
}
要移动表单,您需要使用 WndProc
。专门处理WM_NCLBUTTONDOWN
windows消息。这应该在 MouseDown
事件处理程序中完成。
if (e.Button == MouseButtons.Left)
{
ReleaseCapture();
SendMessage(Handle, WM_NCLBUTTONDOWN, HT_CAPTION, 0);
}
ReleaseCapture
和 SendMessage
都是 user32.dll
的一部分。
要调整大小,您将再次需要使用 WndProc。但是,由于您有 2 个显示器,因此您需要自己获取屏幕坐标。下列的
接受的回复来自 个问题。它可能会帮助您获得正确的坐标。
static class ControlExtensions
{
///<summary>
/// Returns the position of the point in screen coordinates of that control instead
/// of the main-screen coordinates
///</summary>
public static Point PointToCurrentScreen(this Control self, Point location)
{
var screenBounds = Screen.FromControl(self).Bounds;
var globalCoordinates = self.PointToScreen(location);
return new Point(globalCoordinates.X - screenBounds.X, globalCoordinates.Y - screenBounds.Y);
}
}
我正在为使用 Windows 表单的应用程序开发 UI。我也参考了
我有一台多屏幕电脑。当我在主屏幕上最大化时,表格会正常最大化。如果我将表单完全移动到我的第二个屏幕,然后使用最大化,表单就会消失。经过调查,我发现即使正确确定了第二个屏幕的 属性 'this.MaximizedBounds' 即 {X=-1440,Y=0,Width=1440,Height=900} 当我使用语句
this.WindowState = FormWindowState.Maximized;
表单在 {X=-2880,Y=0,Width=1440,Height=900} 绘制,好像由于某种原因绘制方向相反?鉴于此我知道我可以以编程方式确定绘制表单,但我想知道我是否缺少设置一些额外的 属性 以确保绘制方向正确?
以编程方式最大化的表单的问题是表单的状态仍然是 FormWindowState.Normal,我无法将其更改为 FormWindowState.Maximized 而不导致 from 在错误的位置重新绘制
使表格无边界的代码
protected override void WndProc(ref Message m)
{
const int RESIZE_HANDLE_SIZE = 10;
switch (m.Msg)
{
case 0x0084/*NCHITTEST*/ :
base.WndProc(ref m);
if ((int)m.Result == 0x01/*HTCLIENT*/)
{
Point screenPoint = new Point(m.LParam.ToInt32());
Point clientPoint = this.PointToClient(screenPoint);
if (clientPoint.Y <= RESIZE_HANDLE_SIZE)
{
if (clientPoint.X <= RESIZE_HANDLE_SIZE)
m.Result = (IntPtr)13/*HTTOPLEFT*/ ;
else if (clientPoint.X < (Size.Width - RESIZE_HANDLE_SIZE))
m.Result = (IntPtr)12/*HTTOP*/ ;
else
m.Result = (IntPtr)14/*HTTOPRIGHT*/ ;
}
else if (clientPoint.Y <= (Size.Height - RESIZE_HANDLE_SIZE))
{
if (clientPoint.X <= RESIZE_HANDLE_SIZE)
m.Result = (IntPtr)10/*HTLEFT*/ ;
else if (clientPoint.X < (Size.Width - RESIZE_HANDLE_SIZE))
m.Result = (IntPtr)2/*HTCAPTION*/ ;
else
m.Result = (IntPtr)11/*HTRIGHT*/ ;
}
else
{
if (clientPoint.X <= RESIZE_HANDLE_SIZE)
m.Result = (IntPtr)16/*HTBOTTOMLEFT*/ ;
else if (clientPoint.X < (Size.Width - RESIZE_HANDLE_SIZE))
m.Result = (IntPtr)15/*HTBOTTOM*/ ;
else
m.Result = (IntPtr)17/*HTBOTTOMRIGHT*/ ;
}
}
return;
}
base.WndProc(ref m);
}
protected override CreateParams CreateParams
{
get
{
CreateParams cp = base.CreateParams;
cp.Style |= 0x20000; // <--- use 0x20000
cp.ClassStyle |= 0x08;
return cp;
}
}
要退出的代码,maximize/restore,最小化
private void button1_Click(object sender, EventArgs e)
{
Application.Exit();
}
private void button2_Click(object sender, EventArgs e)
{
if(this.WindowState==FormWindowState.Normal)
{
this.button2.Image = ((System.Drawing.Image)(Properties.Resources.Restore_Down));
this.MaximizedBounds = Screen.FromHandle(this.Handle).WorkingArea;
this.WindowState = FormWindowState.Maximized;
}
else if(this.WindowState == FormWindowState.Maximized)
{
this.WindowState = FormWindowState.Normal;
this.button2.Image = ((System.Drawing.Image)(Properties.Resources.Maximize));
}
}
private void button3_Click(object sender, EventArgs e)
{
this.WindowState = FormWindowState.Minimized;
}
为什么要用WndProc来实现无边框?
Windows 表单具有 "FormBorderStyle"、
this.FormBorderStyle = FormBorderStyle.None;
那应该是无边界的,也许这种更默认的方法也解决了 window 位置问题
我的假设是您正在创建一个无边框窗体,然后创建您自己的工具栏。这个最大化、最小化和恢复都可以不用WndProc
来实现。只需要三个按钮和它们的点击事件处理程序,就像这样(它也适用于多个显示器):
private void ClickMinimizeButton(object sender, EventArgs e)
{
WindowState = FormWindowState.Minimized;
}
private void ClickRestoreButton(object sender, EventArgs e)
{
WindowState = FormWindowState.Normal;
}
private void ClickMaximizeButton(object sender, EventArgs e)
{
WindowState = FormWindowState.Maximized;
}
要移动表单,您需要使用 WndProc
。专门处理WM_NCLBUTTONDOWN
windows消息。这应该在 MouseDown
事件处理程序中完成。
if (e.Button == MouseButtons.Left)
{
ReleaseCapture();
SendMessage(Handle, WM_NCLBUTTONDOWN, HT_CAPTION, 0);
}
ReleaseCapture
和 SendMessage
都是 user32.dll
的一部分。
要调整大小,您将再次需要使用 WndProc。但是,由于您有 2 个显示器,因此您需要自己获取屏幕坐标。下列的
接受的回复来自
static class ControlExtensions
{
///<summary>
/// Returns the position of the point in screen coordinates of that control instead
/// of the main-screen coordinates
///</summary>
public static Point PointToCurrentScreen(this Control self, Point location)
{
var screenBounds = Screen.FromControl(self).Bounds;
var globalCoordinates = self.PointToScreen(location);
return new Point(globalCoordinates.X - screenBounds.X, globalCoordinates.Y - screenBounds.Y);
}
}