我的开发平台是手掌设备 还请给出详细代码 或者思路 或者参考  谢谢了

解决方案 »

  1.   

    c# 写移动产品 弹出
    和Windows窗体时一样的
      

  2.   

    是不是这样:
    Form a=new Form();
    a.Show();
      

  3.   

    Form a=new Form(); 
    a.Show();
    a.active
      

  4.   

    Form a=new Form(); 
    a.Show();
    这样?
      

  5.   

    如果你用的VS中的创建智能工程的话Form F=new Form();
        F.Visible = true;
    vs2003试过这个应该行的
      

  6.   

    和winform一样, PDA不就那样子吗?
      

  7.   

    Form a=new Form(); 
    a.Show();这个代码不可以显示  我的确是希望可以显示一个新窗口
      

  8.   

    请告之你的手机的平台,是WinCe还是其它。
      

  9.   

    Form a=new Form(); 
    a.ShowDialog(); 
      

  10.   

    >请告之你的手机的平台,是WinCe还是其它。
    WinCE  5.0的开发平台 >Form a=new Form();
    >a.ShowDialog();ShowDialog无此方法
      

  11.   

    使用.net compact framework 这个应该是你WINCE手机开发平台必须的。Form 类在该平台下有 ShowDialog和Show方法,用于呈现一个窗体。Form f = new Form();
    f.Show();如果你没有.net compact framework的话,请使用Win32ApiHWND CreateWindow(          LPCTSTR lpClassName,
        LPCTSTR lpWindowName,
        DWORD dwStyle,
        int x,
        int y,
        int nWidth,
        int nHeight,
        HWND hWndParent,
        HMENU hMenu,
        HINSTANCE hInstance,
        LPVOID lpParam
    );
    创建窗体,这个,不用解释了吧。别忘了最后要自己销毁窗体
    BOOL DestroyWindow(          HWND hWnd
    );这个是显示窗体用的
    BOOL ShowWindow(          HWND hWnd,
        int nCmdShow
    );nCmdShow参数表选项如下:
    Specifies how the window is to be shown. This parameter is ignored the first time an application calls ShowWindow, if the program that launched the application provides a STARTUPINFO structure. Otherwise, the first time ShowWindow is called, the value should be the value obtained by the WinMain function in its nCmdShow parameter. In subsequent calls, this parameter can be one of the following values. 
    SW_FORCEMINIMIZE
    Windows 2000/XP: Minimizes a window, even if the thread that owns the window is not responding. This flag should only be used when minimizing windows from a different thread.
    SW_HIDE
    Hides the window and activates another window.
    SW_MAXIMIZE
    Maximizes the specified window.
    SW_MINIMIZE
    Minimizes the specified window and activates the next top-level window in the Z order.
    SW_RESTORE
    Activates and displays the window. If the window is minimized or maximized, the system restores it to its original size and position. An application should specify this flag when restoring a minimized window.
    SW_SHOW
    Activates the window and displays it in its current size and position. 
    SW_SHOWDEFAULT
    Sets the show state based on the SW_ value specified in the STARTUPINFO structure passed to the CreateProcess function by the program that started the application. 
    SW_SHOWMAXIMIZED
    Activates the window and displays it as a maximized window.
    SW_SHOWMINIMIZED
    Activates the window and displays it as a minimized window.
    SW_SHOWMINNOACTIVE
    Displays the window as a minimized window. This value is similar to SW_SHOWMINIMIZED, except the window is not activated.
    SW_SHOWNA
    Displays the window in its current size and position. This value is similar to SW_SHOW, except the window is not activated.
    SW_SHOWNOACTIVATE
    Displays a window in its most recent size and position. This value is similar to SW_SHOWNORMAL, except the window is not actived.
    SW_SHOWNORMAL
    Activates and displays a window. If the window is minimized or maximized, the system restores it to its original size and position. An application should specify this flag when displaying the window for the first time.
      

  12.   

    如果你即不能调用Form类方法,又不能使用Win32Api的话,那么我就很怀疑你是不是WinCE的手机了……
      

  13.   

    我想切换到另外的视图中 
    楼上各位 回答 我很无奈  。因为我查询发现 对于Form类, 不能同时运行2个 
    所以 你们那些方法根本属于百用工