[DllImport("user32.dll", EntryPoint = "SetWindowLongA", SetLastError = true)]//
        private static extern long SetWindowLong(IntPtr hwnd, int nIndex, long dwNewLong);SetWindowLong(appWin, GWL_STYLE, WS_VISIBLE);
检测到 PInvokeStackImbalance
Message: 对 PInvoke 函数“AppControl!AppControl.ApplicationControl::SetWindowLong”的调用导致堆栈不对称。原因可能是托管的 PInvoke 签名与非托管的目标签名不匹配。请检查 PInvoke 签名的调用约定和参数与非托管的目标签名是否匹配。
真不知道哪里不匹配了