我有一张带有居中背景图像的MDI表格 每次用户更改表单的大小或状态时,图像都不会更新。它仍然留在旧的地方(不再居中),甚至在表格太小时丢失。
如何正确处理这种情况?
我是否真的必须在与表单大小和状态相关的所有事件处理程序中调用“this.Refresh()”?
应用程序在带有Windows.Forms的.net 3.5SP1 C#中实现。
答案 0 :(得分:2)
不幸的是,似乎没有超快的方法来做到这一点,但以下是我的解决方案,至少似乎并不依赖于巧合。
在mdi构造函数中,处理resizing:
this.ResizeEnd += delegate { this.Refresh(); };
然后这个覆盖来处理最大化/恢复事件
protected override void WndProc(ref Message m)
{
if (m.Msg == Win32.WM_SYSCOMMAND)
{
int test = m.WParam.ToInt32() & 0xFFF0;
switch (test)
{
case Win32.SC_MAXIMIZE:
case Win32.SC_RESTORE:
this.Invalidate(); // used to keep background image centered
break;
}
}
base.WndProc(ref m);
}
常量值定义为:
public const int WM_SYSCOMMAND = 0x0112;
//wparam for WM_SYSCOMMAND should be one of these after masking with 0xFFF0:
public const int SC_RESTORE = 0xF120;
public const int SC_MINIMIZE = 0xF020;
public const int SC_MAXIMIZE = 0xF030;
答案 1 :(得分:1)
你可以做到这一切,或者你可以在MDI的me.refresh
事件中加上resize
。
答案 2 :(得分:0)
在MDI表单的Resize事件中调用PositionContainersToParentMiddle方法。 我没有测试它,但它应该工作。您可能必须在Resize事件中放置条件以在每次调整大小时停止图像位置更改。
private void YourMDI_Resize(object sender, EventArgs e)
{
PositionContainersToParentMiddle();
}
private void PositionContainersToParentMiddle()
{
int iInitX = (ParentOfImage.Size.Width - YourImage.Size.Width) / 2;
int iInitY = ( ParentOfImage.Location.Y + YourImage.Size.Height ) / 2;
YourImage.Location = new Point( iInitX, iInitY ) ;
}
答案 3 :(得分:0)
Private Sub YourMDIFormName_Resize(ByVal sender As Object, ByVal e As EventArgs) Handles Me.Resize
Me.BackgroundImage = My.Resources.YourBackgroundImageName
Me.Refresh()
End Sub
答案 4 :(得分:-1)
private void Change_BackgroundImage(string _path)
{
string imagepath = _path;
System.IO.FileStream fs;
// MDI Form image background layout change her`enter code here`e
//(Remember control imagebakground layout take default form background layount )
this.BackgroundImageLayout = ImageLayout.Center;
// Checking File exists if yes go --->
if (System.IO.File.Exists(imagepath))
{
// Read Image file
fs = System.IO.File.OpenRead(imagepath);
fs.Position = 0;
// Change MDI From back ground picture
foreach (Control ctl in this.Controls)
{
if (ctl is MdiClient)
{
//ctl.BackColor = Color.AntiqueWhite;
ctl.BackColor = Color.FromArgb(31, 26, 23);
ctl.BackgroundImage = System.Drawing.Image.FromStream(fs);
break;
}
}
}
}