wince编程常用控制窗体API

来源:互联网 发布:如何找淘宝客帮我推广 编辑:程序博客网 时间:2024/05/16 14:29
在wince下常需要对一些窗体进行控制,包括窗体的定位,显示以及创建等,现将常用到的函数汇总如下:
wince对coredll.dll进行了大力的封装一般的常用API都被封装其中!

[DllImport("coredll.Dll")]
public static extern IntPtr FindWindow(string strclassName, string strWindowName);

[DllImport("coredll.Dll")]
public static extern int SetWindowPos(IntPtr hwnd, int hWndInsertAfter, int x, int y, int cx, int cy, int wFlags);

 

[DllImport("coredll.Dll")]
 public static extern bool ShowWindow(IntPtr hWnd, Int32 nCmdShow);
public const int WM_CLOSE = 0x10;

 

[DllImport("coredll.Dll")]
public static extern int SendMessage(IntPtr hwnd, int wMsg, int wParam, int lParam);

 

[DllImport("coredll.Dll", EntryPoint = "CreateProcess", SetLastError = true)]
extern static int CreateProcess(string strImageName, string strCmdLine, IntPtr pProcessAttributes, IntPtr pThreadAttributes, int bInheritsHandle, int dwCreationFlags, IntPtr pEnvironment, IntPtr pCurrentDir, IntPtr bArray, ProcessInfo oProc);

 

public class ProcessInfo
    {
        public Int32 hProcess;
        public Int32 hThread;
        public Int32 ProcessID;
        public Int32 ThreadID;
     }

 

[DllImport("coredll.Dll")]

 public static extern bool MoveWindow(IntPtr hWnd, int x, int y, int nWidth, int nHeight, bool bRePaint);

原创粉丝点击