Command Routing in Windows Forms .NET

When developing a real-world application in Windows Forms .NET, you usually have multiple menus, tool bars, ribbons, context menus, etc.

The challenge here is to provide central handlers to perform actions (e.g. an action to open a file) that came from various sources (e.g. the user clicks a menu item, or a tool bar item).


(Screenshot from my article on CodeProject about the same topic)

MFC

In the pre-.NET days there were the Microsoft Foundation Classes (MFC) that came with what they call „Command Routing„.

In MFC’s command routing the framework was responsible of correctly dispatching to the correct handler. In the handler you could specify (among other things):

  • Whether the command’s visual representation (a button, a menu item, …) is displayed in enabled or disabled state.
  • The action to perform when the command is being executed.

The dispatching took place automatically, depending on the current focused window.

.NET Windows Forms

Now when Windows Forms appeared, they completely lacked this command routing framework.

Therefore I developed my own minimal version that is nearly-bug-free for some projects. You can download an example project here.

Since there are more approaches by other developers to solve the lack of command routing in Windows Forms, I want to use this article to list the good ones I found:

I’m looking forward to read your resources, feel free to post them here in the comments section below.

Windows Presentation Foundation (WPF)

To be honest, I do have no practical experiences in WPF. Luckily my co-worker Dennis has a Microsoft certification on WPF.

From what I do understand, WPF does have very decent command routing. Maybe some reader can comment on whether it would be possible to extract parts of the WPF command routing and use it in Windows Forms? (Here is a German discussion about that topic)

I hope that I will soon be able to try WPF in my own projects. 🙂

(Keyword: event routing event bubbling bubble event tree hierarchy)

Ein Gedanke zu „Command Routing in Windows Forms .NET

Schreibe einen Kommentar

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert

Diese Website verwendet Akismet, um Spam zu reduzieren. Erfahre mehr darüber, wie deine Kommentardaten verarbeitet werden.