2

在 WindowsCE 平台(自定义构建)上,我们的 C# gui 使用常规表单来显示“弹出菜单”。我们将FormBorderstyle设置为None因为我们不希望表单控件可见。

一段时间后,一些客户报告“灰盒”。在这里进行一些测试后,我们可以很快地重现该问题。当我们不断打开 2 个不同的菜单(表单)时,平台会向我们显示本机异常。

错误
Tiger.CEHost.exe 中发生本机异常。选择退出,然后重新启动此程序,或选择详细信息以获取更多信息。

细节:

错误
异常代码:0xC0000005
异常地址:0x00000001
读取:0x00000001

在 WL.SetSTyle(IntPtr hwnThis, UInt32 dwMask, UInt32 dwStyle)
在 Form._SetBorderStyle(AGL_WINDOWSTYLE wstyVal, AGL_WINDOWSTYLE wstyMask)
在 Form.set_FormBorderStyle(FormBorderStyle 值)
在 pDropDown.PopupForm.Show()
在 pDropDown.Show()
在 pButton。 ShowHideDropDown()
at pButton.OnClick(EventArgs e)
at Control.WnProc(WM wm, Int32 wParam, Int32 lParam)
at Control._InternalWnProc(WM wm, Int32 wParam, Int32 lParam)
at EVL.EnterMainLoop(IntPtr hwnMain)
at Application。
在 Program.Main(String[] args) 处运行(Form fm )

它似乎总是在FormBorderStyle属性上失败。我们已经尝试删除所有 pInvokes,因为可能会覆盖一些内存,但这并没有帮助。

我们还记录对 Show 方法的每次调用,每次调用都是在 gui 线程中进行的,并且 Form 包含一个有效的句柄。

4

2 回答 2

1

我从未见过这种情况,这往往让我认为它不太可能成为 CF 甚至您的应用程序中的问题。

您的设备是否有足够的内存来运行应用程序?内存不足的情况应该会引发 OOM,但我已经看到它会做其他更难预测的事情,所以它始终是首先要检查的事情。

如果内存不是问题,您确定这不是平台问题吗?请记住,由于大部分操作系统是由 OEM 开发的,因此您不能排除操作系统中的问题。

我会尝试两件事:

  1. 同一个应用程序在其他一些硬件(甚至是模拟器)上运行正常吗?如果它适用于其他硬件,则严重暗示平台是问题所在。

  2. 由于在 C# 中使用小型应用程序进行复制相当容易,因此我建议使用 C/C++ 构建一个应用程序,该应用程序执行相同的功能项,以查看它是否表现或给出相同的问题。

于 2010-10-25T14:22:33.550 回答
0

这似乎是 netcfagl3_5.dll 中的一个错误(将通知 Microsoft)

当我们使用 pinvokes (SetWindowLong) 设置 FormBorderstyle 时,我们无法重现该问题。

如果有人遇到这种罕见的错误,这是设置 formborderstyle 而不使用 .net FormBorderStyle属性的代码。

private const uint WS_OVERLAPPED = 0x00000000;
        private const uint WS_POPUP = 0x80000000;
        private const uint WS_CHILD = 0x40000000;
        private const uint WS_MINIMIZE = 0x20000000;
        private const uint WS_VISIBLE = 0x10000000;
        private const uint WS_DISABLED = 0x08000000;
        private const uint WS_CLIPSIBLINGS = 0x04000000;
        private const uint WS_CLIPCHILDREN = 0x02000000;
        private const uint WS_MAXIMIZE = 0x01000000;
        private const uint WS_CAPTION = 0x00C00000;
        private const uint WS_BORDER = 0x00800000;
        private const uint WS_DLGFRAME = 0x00400000;
        private const uint WS_VSCROLL = 0x00200000;
        private const uint WS_HSCROLL = 0x00100000;
        private const uint WS_SYSMENU = 0x00080000;
        private const uint WS_THICKFRAME = 0x00040000;
        private const uint WS_GROUP = 0x00020000;
        private const uint WS_TABSTOP = 0x00010000;

        private const int WS_MINIMIZEBOX = 0x00020000;
        private const int WS_MAXIMIZEBOX = 0x00010000;

        private const uint WS_EX_DLGMODALFRAME = 0x00000001;
        private const uint WS_EX_NOPARENTNOTIFY = 0x00000004;
        private const uint WS_EX_TOPMOST = 0x00000008;
        private const uint WS_EX_ACCEPTFILES = 0x00000010;
        private const uint WS_EX_TRANSPARENT = 0x00000020;
        private const uint WS_EX_MDICHILD = 0x00000040;
        private const uint WS_EX_TOOLWINDOW = 0x00000080;
        private const uint WS_EX_WINDOWEDGE = 0x00000100;
        private const uint WS_EX_CLIENTEDGE = 0x00000200;
        private const uint WS_EX_CONTEXTHELP = 0x00000400;
        private const uint WS_EX_STATICEDGE = 0x00020000;

        private const int WS_EX_NOANIMATION = 0x04000000;
        public const int GWL_EX_STYLE = -20;
        public const int GWL_STYLE = (-16);

public static void SetNoBorder(Form form) {
            RemoveFormStyle(form, GWL_STYLE, (int)(WS_CAPTION | WS_THICKFRAME | WS_MINIMIZE | WS_MAXIMIZE | WS_SYSMENU));
            RemoveFormStyle(form, GWL_EX_STYLE, (int)(WS_EX_DLGMODALFRAME | WS_EX_CLIENTEDGE | WS_EX_STATICEDGE));
        }

public static void RemoveFormStyle(Form f, int modifier, int style) {
            int currStyle = GetWindowLong(f.Handle, GWL_EX_STYLE);
            currStyle &= ~style;
            SetWindowLong(f.Handle, modifier, currStyle);
        }

    [DllImport("Coredll.dll", SetLastError = true)]
    public static extern int SetWindowLong(IntPtr hWnd, int nIndex, int dwNewLong);

    [DllImport("coredll.dll", SetLastError = true)]
    public static extern int GetWindowLong(IntPtr hWnd, int nIndex);
于 2010-10-27T08:26:10.843 回答