Jump to content

Buttona Menü Ekleme


canavar123
 Share

Recommended Posts

Arkadaşlar ben bir program oluşturuyorum ve bu programda bir button a basıldığında bir menü açılmasını ve o menüden hangisi açıldıysa ona görev atamak istiyorum bunu nasıl yapabilirim kodları verirmisiniz

Edited by canavar123
Link to comment
Share on other sites

  • 2 hafta sonra ...

Button click evresine :

tMenu = {};
tMenu[1] ={};
tMenu[1].Text = "Menu 1";
tMenu[1].ID = 100;
tMenu[1].IconID = 15;
tMenu[1].Checked = false;
tMenu[1].Enabled = true;
tMenu[2] ={};
tMenu[2].Text = "Menu 2";
tMenu[2].ID = 101;
tMenu[2].IconID = 1;
tMenu[2].Checked = false;
tMenu[2].Enabled = true;
 
 
nMenu = Application.ShowPopupMenu(System.GetMousePosition(true, Application.GetWndHandle()).X, System.GetMousePosition(true, Application.GetWndHandle()).Y, tMenu, TPM_LEFTALIGN, TPM_TOPALIGN, true, true)
 
 
if nMenu == 100 then
-- menu 1 seçilince çalışacak kodlar
elseif nMenu == 101 then
-- menu 2 seçilince çalışacak kodlar

kodlarını ekleyin.

Link to comment
Share on other sites

[quote name="nightmare3519" post="1471188" timestamp="1407879544"]Button click evresine :

tMenu = {};
tMenu[1] ={};
tMenu[1].Text = "Menu 1";
tMenu[1].ID = 100;
tMenu[1].IconID = 15;
tMenu[1].Checked = false;
tMenu[1].Enabled = true;
tMenu[2] ={};
tMenu[2].Text = "Menu 2";
tMenu[2].ID = 101;
tMenu[2].IconID = 1;
tMenu[2].Checked = false;
tMenu[2].Enabled = true;
 
 
nMenu = Application.ShowPopupMenu(System.GetMousePosition(true, Application.GetWndHandle()).X, System.GetMousePosition(true, Application.GetWndHandle()).Y, tMenu, TPM_LEFTALIGN, TPM_TOPALIGN, true, true)
 
 
if nMenu == 100 then
-- menu 1 seçilince çalışacak kodlar
elseif nMenu == 101 then
-- menu 2 seçilince çalışacak kodlar
kodlarını ekleyin.[/quote] Pc servisten gelince deneyeceğim teşekkürler Tapatalkta kodlar öyle saçma görünüyorki görsen hiçbirşey anlamazsın :P chrome dan açınca bambaşka ;)
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

  • Recently Browsing   0 members

    No registered users viewing this page.

×
×
  • Create New...