wince编程常用控制窗体API

来源:互联网 发布:查看linux安装的字体 编辑:程序博客网 时间:2024/04/30 10:55

wince编程常用控制窗体API

嵌入式学习 2007-05-02 21:26:25 阅读88 评论0   字号: 订阅

在wince下常需要对一些窗体进行控制,包括窗体的定位,显示以及创建等,现将常用到的函数汇总如下:
wince对coredll.dll进行了大力的封装一般的常用API都被封装其中!

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

[DllImport("coredll.Dll")]
public static extern int SetWindowPos(IntPtr hwnd, int hWndInsertAfter, intx, 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, intlParam);

 

[DllImport("coredll.Dll", EntryPoint ="CreateProcess", SetLastError = true)]
extern static int CreateProcess(stringstrImageName, string strCmdLine, IntPtr pProcessAttributes, IntPtrpThreadAttributes, int bInheritsHandle, int dwCreationFlags, IntPtrpEnvironment, IntPtr pCurrentDir, IntPtr bArray, ProcessInfooProc);

 

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

 

[DllImport("coredll.Dll")]

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