How is the Undo, Cut, Copy , Refresh and Paste operations implemented in Windows XP when i right-click the mouse on the desktop ? Which language is used ?
How to implement Undo, Cut, Copy , Refresh and Paste operations
Collapse
X
-
Tags: None
-
That code is native to Windows, but you can access the clipboard data the operating system puts there in a C# program. Look into the Clipboard class on MSDN, this is probably your best starting point. If you have troubles with the implementation, please feel free to post specific questions here :)
http://msdn.microsoft.com/en-us/libr...clipboard.aspx
Comment