2010-05-14 39 views
8

Tôi đang sử dụng mã bên dưới để xóa Thanh tiêu đề của một ứng dụng đang hoạt động hoàn hảo cho notepad. Bây giờ tôi muốn loại bỏ thanh Menu cũng. Làm thế nào để đạt được nó?Cách xóa MenuBar của ứng dụng bằng API cửa sổ?

//Finds a window by class name 
     [DllImport("USER32.DLL")] 
     public static extern IntPtr FindWindow(string lpClassName, string lpWindowName); 

     //Sets a window to be a child window of another window 
     [DllImport("USER32.DLL")] 
     public static extern IntPtr SetParent(IntPtr hWndChild, IntPtr hWndNewParent); 

     //Sets window attributes 
     [DllImport("USER32.DLL")] 
     public static extern int SetWindowLong(IntPtr hWnd, int nIndex, int dwNewLong); 

     //Gets window attributes 
     [DllImport("USER32.DLL")] 
     public static extern int GetWindowLong(IntPtr hWnd, int nIndex); 

     [DllImport("user32.dll", EntryPoint = "FindWindow", SetLastError = true)] 
     static extern IntPtr FindWindowByCaption(IntPtr ZeroOnly, string lpWindowName); 


     //assorted constants needed 
     public static int GWL_STYLE = -16; 
     public static int WS_BORDER = 0x00800000; //window with border 
     public static int WS_DLGFRAME = 0x00400000; //window with double border but no title 
     public static int WS_CAPTION = WS_BORDER | WS_DLGFRAME; //window with a title bar 

     public void WindowsReStyle() 
     { 
      Process[] Procs = Process.GetProcesses(); 
      foreach (Process proc in Procs) 
      { 

       if (proc.ProcessName.StartsWith("notepad")) 
       { 
        IntPtr pFoundWindow = proc.MainWindowHandle; 
        int style = GetWindowLong(pFoundWindow, GWL_STYLE); 
        SetWindowLong(pFoundWindow, GWL_STYLE, (style & ~WS_CAPTION)); 
       } 
      } 
    } 
+0

Tôi cần giống nhau. Nhưng khi áp dụng mã này trong ứng dụng của tôi, nó ẩn thanh tiêu đề khi thực hiện một số tương tác chuột trên nó (như kéo và thả, v.v.). Bạn có thể gợi ý cho tôi nguyên nhân gốc rễ không? –

Trả lời

7

Bạn không thể ẩn chúng, bạn sẽ cần xóa chúng bằng cách sử dụng API thay vào đó, YMMV khi thực hiện việc này;

[DllImport("USER32.DLL")] 
    public static extern IntPtr FindWindow(string lpClassName, string lpWindowName); 

    [DllImport("user32.dll", EntryPoint = "FindWindow", SetLastError = true)] 
    static extern IntPtr FindWindowByCaption(IntPtr ZeroOnly, string lpWindowName); 

    [DllImport("user32.dll")] 
    static extern IntPtr GetMenu(IntPtr hWnd); 

    [DllImport("user32.dll")] 
    static extern int GetMenuItemCount(IntPtr hMenu); 

    [DllImport("user32.dll")] 
    static extern bool DrawMenuBar(IntPtr hWnd); 

    [DllImport("user32.dll")] 
    static extern bool RemoveMenu(IntPtr hMenu, uint uPosition, uint uFlags); 

    public static uint MF_BYPOSITION = 0x400; 
    public static uint MF_REMOVE = 0x1000; 

    public static void WindowsReStyle() { 
     Process[] Procs = Process.GetProcesses(); 
     foreach (Process proc in Procs) { 

      if (proc.ProcessName.StartsWith("notepad")) { 
       //get menu 
       IntPtr HMENU = GetMenu(proc.MainWindowHandle); 
       //get item count 
       int count = GetMenuItemCount(HMENU); 
       //loop & remove 
       for (int i = 0; i < count; i++) 
        RemoveMenu(HMENU, 0, (MF_BYPOSITION | MF_REMOVE)); 

       //force a redraw 
       DrawMenuBar(proc.MainWindowHandle); 
      } 
     } 
    } 
+0

u có thể cho tôi biết các hằng số cần thiết cho mã này không? – Anuya

+1

cập nhật bài đăng ở trên –

Các vấn đề liên quan