我想制作一个鼠标右键菜单,其中包含“复制”和“粘贴”选项。
假设我有:
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。