Tutoriels pour "Personnalisation du menu système dans une application Windows Forms":
http://www.codeproject.com/KB/dotnet/CustomWinFormSysMenu.aspx
http://www.codeguru.com/csharp/csharp/cs_misc/userinterface/article.php/c9327
Snippet:
Importation user32.dll pour accéder aux fonctions requises pour modifier la menu du système.
[DllImport("user32.dll")]
private static extern IntPtr GetSystemMenu(IntPtr hWnd, bool bRevert);
[DllImport("user32.dll")]
private static extern bool InsertMenu (IntPtr hMenu,
Int32 wPosition, Int32 wFlags, Int32 wIDNewItem,
string lpNewItem);
Obtenez le menu système actuel et ajouter des éléments:
IntPtr sysMenuHandle = GetSystemMenu(this.Handle, false);
//It would be better to find the position at run time of the 'Close' item, but...
InsertMenu(sysMenuHandle, 5, MF_BYPOSITION | MF_SEPARATOR, 0, string.Empty);
InsertMenu(sysMenuHandle, 6, MF_BYPOSITION , IDM_CUSTOMITEM1, "Item 1");
InsertMenu(sysMenuHandle, 7, MF_BYPOSITION , IDM_CUSTOMITEM2, "Item 2");
public const Int32 WM_SYSCOMMAND = 0x112;
public const Int32 MF_SEPARATOR = 0x800;
public const Int32 MF_BYPOSITION = 0x400;
public const Int32 MF_STRING = 0x0;
public const Int32 IDM_CUSTOMITEM1 = 1000;
public const Int32 IDM_CUSTOMITEM2 = 1001;
Capturer la sélection des nouveaux éléments personnalisés afin d'assigner des méthodes pour les:
protected override void WndProc(ref Message m)
{
if(m.Msg == WM_SYSCOMMAND)
{
switch(m.WParam.ToInt32())
{
case IDM_CUSTOMITEM1 :
MessageBox.Show("Clicked 'Item 1'");
return;
case IDM_CUSTOMITEM1 :
MessageBox.Show("Clicked 'item 2'");
return;
default:
break;
}
}
base.WndProc(ref m);
}
pourriez-vous fournir un extrait de ces instructions ainsi que votre lien? –
Extrait de code ajouté de CodeProject.com (modifié). –