Hello World! I'm building a context menu in C#. From the toolbox I'm going to pick the context menu strip and drag that to the form. And I want it to have the same thing we would have if we click edit in any application, which is cut, copy, and paste with the hotkeys control X, control C, and control V. So let's build that. Let's go in and edit that in the properties window. Let's do it here. OK. Edit items. So I want to add one, two, three items. And again: those are going to say copy, cut, and paste. So let's name the text for the first one copy. And the name is going to be context Copy. And the text is copy, and we need to make a shortcut key: Control plus the letter C. And then we needed an image [alphabetical order, that's easier.] And I am going to import the copy image, click open and say OK. The next item is cut, and so the name is going to be context cut. The text is going to say cut. The shortcut key is control X, and we need an image for that. And.. The last item is paste and let's name that context paste. The image for that, paste and the hot key text is going to paste. And the shortcut key is going to be control and the letter B. And say OK. And that's what my context menu strip looks like. What I'm going to do next is select that for the rich text box. And for context menu strip I'm going to add that context menu that I just did. And then when I run my program if I right click , in this text box I have those commands copy, cut, and paste. And all we have to do now is add the call to copy, cut, and paste to those context menu items. And that's it!