SetWindowPos c# 一个这个问题的错误

SetWindowPosc#usingSystem;usingSystem.Collections.Generic;usingSystem.Text;usingSyste... SetWindowPos c#using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.InteropServices;
using System.Diagnostics;

namespace ConsoleApplication1
{
class Program
{
[StructLayout(LayoutKind.Sequential)]
public struct RECT
{
int left;
int top;
int right;
int bottom;
}
[DllImport("user32.dll")]
private static extern IntPtr GetForegroundWindow();
[DllImport("user32.dll")]
public static extern int GetWindowRect(IntPtr hWnd, out RECT lpRect);
[DllImport("user32.dll")]
public static extern int GetClientRect(IntPtr hWnd, out RECT lpRect);
[DllImport("user32")]
public static extern long SetWindowPos(IntPtr hwnd, long hWndInsertAfter, long x, long y, long cx, long cy, long uFlags);
static void Main(string[] args)
{

IntPtr ptrWnd = GetForegroundWindow();
IntPtr hwnd = ptrWnd; // 窗口句柄
RECT rc;
RECT rc1;
GetWindowRect(hwnd, out rc);
GetClientRect(hwnd, out rc1);
SetWindowPos(hwnd, 0, 0, 0, 0, 0, 0);

}
}
}
一运行就就跳出了,给看看
检测到 PInvokeStackImbalance
Message: 对 PInvoke 函数“ConsoleApplication1!ConsoleApplication1.Program::SetWindowPos”的调用导致堆栈不对称。原因可能是托管的 PInvoke 签名与非托管的目标签名不匹配。请检查 PInvoke 签名的调用约定和参数与非托管的目标签名是否匹配。
展开
 我来答
若以下回答无法解决问题,邀请你更新回答
yxz0539
2010-08-04 · TA获得超过1597个赞
知道大有可为答主
回答量:1759
采纳率:0%
帮助的人:1746万
展开全部
1.你要实现上述功能直接使用.NET库就可以了,为什么非得用Windows API?
2.请把错误信息贴出来
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式