如何在c#中复制和粘贴?

时间:2013-11-10 13:53:16

标签: c# winforms

我想制作一个鼠标右键菜单,其中包含“复制”和“粘贴”选项。

让我说我有:

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。

1 个答案:

答案 0 :(得分:1)

此行为称为ContextMenu,将显示在RightMouseClick上。 如果您使用Windows TextBox应用程序,则Forms上的问题不明确。

Windows ContextMenu

上的默认Form

Default <code>ContextMenu</code>

如果要在Windows窗体上的某个位置创建它,可以使用ContextMenuStrip控件。

请参阅:ContextMenuStrip