Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C#: In which classes are the ICommandExecutor interface used?

I found the ICommandExecutor interface in .net but cant find the classes where it is implemented. I know there is some xaml related stuff where it's used. But is there something for the winforms, too?

like image 805
Tarion Avatar asked Dec 30 '25 07:12

Tarion


1 Answers

It's implemented in MenuItemData which is an inner class of System.Windows.Forms.MenuItem.

In general if you're looking to find out what interefaces are implemented where, the quickest way to get the answer is via Reflector. It makes queries like this incredibly easy.

http://www.red-gate.com/products/reflector/

like image 179
JaredPar Avatar answered Dec 31 '25 20:12

JaredPar