pocket pc开发,没试过. 帮你UP

解决方案 »

  1.   

    我想可不可以给你的程序加个消息过滤。当拦截到指定消息时,触发保存菜单。
    public class MyMessageFilter : IMessageFilter        //过滤系统消息的对象。
    {
    public bool PreFilterMessage(ref Message m)
    {
    if (m.Msg == 0x100)
    {
       {保存}
                                 }
    }
    }然后
    static void Main() 
    {
    Application.AddMessageFilter( new MyMessageFilter() );//为你的程序添加过滤对象。
    Application.Run(new Form1()); }
      

  2.   

    The menu associated with pword is on Command bar, so you should get the command bar.In eVC, you use:
    CCommandBar
    GetCommandBar.
      

  3.   

    refer to 
    ms-help://MS.MSDNQTR.2003JUL.1033/dv_wcemfc4/html/aforiCCeDocListMethods.htm
      

  4.   

    http://www.pocketpcdn.com/articles/cmdbar_menu.html