I have 3 buttons (in WinForm) Cut/Copy/Paste.
I need to bind the enabled and disabled state for each of them in dependence if the Clipboard contains or not "MyObject"s list.
How can I automatize that?
If you are asking how to know when the Clipboard has changed, a great wrapper for this is answered in: Clipboard event C#
Handle the ClipboardChanged
event and process accordingly.