在构造函数期间OnActivated



期间Form的构造函数触及特定属性(即Width属性)时,它会立即调用OnActivated()。我只在运行WindowsEmbedded7和它附带的.NET3.5的设备上注意到这种行为

以下是我用来重现问题的代码:

static class Program
{
[MTAThread]
static void Main()
{
new MyForm();
}
}
public class MyForm : Form
{
public MyForm()
{
Width = 100;
}
protected override void OnActivated(EventArgs e)
{
MessageBox.Show("Activated!");
}
}

(请注意,我既没有Show()也没有使用Application.Run())

在我的桌面或WinCE 5设备上运行上述代码不会显示MessageBox。在我的Windows Embedded 7设备上,MessageBox会出现,单击"确定"后,它会重新出现,因为OnActivated()正在被再次调用。

设备制造商告诉我,这是一个特定于操作系统的问题,有人能证实这就是Windows Embedded 7应该"处理他的表单"的方式吗?

我在带有.NET CF 3.5的Windows CE 5.0设备上尝试了这个操作,看看我是否遇到了与您相同的行为。使用完全相同的代码,我没有调用OnActivated。即使使用Application.Run(),设置Width也不会导致调用OnActivated。事实上,由于我尝试显式调用Activate(),因此似乎必须显示Form才能允许Activate激发。

因此,这似乎是Windows Embedded 7与以前版本的Windows CE相比所做的事情。我还试着使用Reflector查看CompactFramework.NET.dll,但在.NET中没有发现任何代码会在窗体宽度更改时激活窗体。Width不是Form的属性(它是Control的属性),Form似乎无论如何都不会处理允许其调用其Activate方法的调整大小事件。

作为一个可能的变通办法,我确实有一个建议给你。以下代码阻止Activate完全发生,即使我显式调用Activate();

试试看:

public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
DisableActivate();
Activate(); // No call is made to OnActivated
EnableActivate();
}
protected override void OnActivated(EventArgs e)
{
Debug.WriteLine("Activated");
}
private void DisableActivate()
{
WindowStyles style = GetWindowLong(Handle, GWL_EX_STYLE);
style |= WindowStyles.WS_EX_NOACTIVATE;
SetWindowLong(Handle, GWL_EX_STYLE, style);
}
private void EnableActivate()
{
WindowStyles style = GetWindowLong(Handle, GWL_EX_STYLE);
style &= ~WindowStyles.WS_EX_NOACTIVATE;
SetWindowLong(Handle, GWL_EX_STYLE, style);
}
public const int GWL_EX_STYLE = -20;
[DllImport("coredll.dll", SetLastError = true)]
public static extern WindowStyles GetWindowLong(IntPtr hWnd, int nIndex);
[DllImport("Coredll.dll", SetLastError = true)]
public static extern int SetWindowLong(IntPtr hWnd, int nIndex, WindowStyles dwNewLong);
[Flags]
public enum WindowStyles : uint
{
WS_CHILD = 0x40000000,
WS_VISIBLE = 0x10000000,
WS_DISABLED = 0x08000000,
WS_GROUP = 0x00020000,
WS_TABSTOP = 0x00010000,
WS_OVERLAPPED = WS_BORDER | WS_CAPTION,
WS_CLIPSIBLINGS = 0x04000000,
WS_CLIPCHILDREN = 0x02000000,
WS_CAPTION = 0x00C00000,    /* WS_BORDER | WS_DLGFRAME  */
WS_BORDER = 0x00800000,
WS_DLGFRAME = 0x00400000,
WS_VSCROLL = 0x00200000,
WS_HSCROLL = 0x00100000,
WS_SYSMENU = 0x00080000,
WS_THICKFRAME = 0x00040000,
WS_MAXIMIZEBOX = 0x00020000,
WS_MINIMIZEBOX = 0x00010000,
WS_SIZEBOX = WS_THICKFRAME,
WS_POPUP = 0x80000000,
WS_EX_NOACTIVATE = 0x08000000,
WS_EX_DLGMODALFRAME = 0x00000001,
WS_EX_TOPMOST = 0x00000008,
WS_EX_TOOLWINDOW = 0x00000080,
WS_EX_WINDOWEDGE = 0x00000100,
WS_EX_CLIENTEDGE = 0x00000200,
WS_EX_CONTEXTHELP = 0x00000400,
WS_EX_RIGHT = 0x00001000,
WS_EX_RTLREADING = 0x00002000,
WS_EX_LEFTSCROLLBAR = 0x00004000,
WS_EX_STATICEDGE = 0x00020000,
WS_EX_NOINHERITLAYOUT = 0x00100000, // Disable inheritence of mirroring by children
WS_EX_LAYOUTRTL = 0x00400000, // Right to left mirroring
WS_EX_OVERLAPPEDWINDOW = (WS_EX_WINDOWEDGE | WS_EX_CLIENTEDGE),
WS_EX_CAPTIONOKBTN = 0x80000000,
WS_EX_NODRAG = 0x40000000,
WS_EX_ABOVESTARTUP = 0x20000000,
WS_EX_INK = 0x10000000,
WS_EX_NOANIMATION = 0x04000000
}
}

所以基本上,用你的代码做:

public MyForm()
{
DisableActivate();
Width = 100;
EnableActivate();
}

相关内容

  • 没有找到相关文章

最新更新