我想制作一个鼠标右键菜单,其中包含“复制”和“粘贴”选项。
让我说我有:
int p=int.Parse(Microsoft.VisualBasic.Interaction.InputBox(""));
p*=100;
Box b=new Box();//This is a form called "Box" that has a textbox in it. The result will be in the textbox.
b.Show();
现在,我想让用户通过右键菜单复制/粘贴该框。我该怎么做呢? 我正在使用WinForms。
答案 0 :(得分:1)
此行为称为ContextMenu
,将显示在RightMouseClick
上。
如果您使用Windows TextBox
应用程序,则Forms
上的问题不明确。
Windows ContextMenu
Form
如果要在Windows窗体上的某个位置创建它,可以使用ContextMenuStrip
控件。
请参阅:ContextMenuStrip