I am designing a GUI that has the following basic idea (similarly modeled after Visual Studio’s basic look-and-feel):
- File navigation
- Control selector (for selecting what to display in the Editor component)
- Editor
- Logger (errors, warnings, confirmation, etc.)
For now, I will be using a TreeView for file navigation, a ListView for selecting controls to be displayed in the Editor and a RichTextBox for the Logger. The Editor will have 2 types of editing modes depending on what is selected in the TreeView. The Editor will either be a RichTextBox for manually editing text inside files, or it will be a Panel with Drag/Drop DataGridViews and sub-TextBoxes for editing in this Panel.
I am attempting to follow the Passive View design pattern for complete separation of Model from View and vice versa. The nature of this project is that any component I add is subject to edit/removal. As such, I need there to independence from a given control to the next. If today I am using a TreeView for file navigation, but tomorrow I am told to use something else, then I want to implement a new control with relative ease.
I simply do not understand how to structure the program. I understand one Presenter per Control, but I do not know how to make it work such that I have a View (the entire GUI of the program) with controls (sub-Views) such that the ENTIRE View is replaceable as well as the individual controls that reflect my model.
In the main View, which is supposed to be lightweight by Passive View standards, do I implement the sub-Views individually? If so, say I have an interface INavigator to abstract the role of the Navigator object. The navigator will need a Presenter and a Model to act between the Navigator View and the main View. I feel like I am getting lost in the design pattern jargon somewhere.
The most similarly-related question can be found here, but it does not answer my question in sufficient detail.
Will anybody please help me understand how to “structure” this program? I appreciate any help.
Thanks,
Daniel
Abstraction is good, but it’s important to remember that at some point something has to know a thing or two about a thing or two, or else we’ll just have a pile of nicely abstracted legos sitting on the floor instead of them being assembled into a house.
An inversion-of-control/dependency injection/flippy-dippy-upside-down-whatever-we’re-calling-it-this-week container like Autofac can really help in piecing this all together.
When I throw together a WinForms application, I usually end up with a repeating pattern.
I’ll start with a
Program.csfile that configures the Autofac container and then fetches an instance of theMainFormfrom it, and shows theMainForm. Some people call this the shell or the workspace or the desktop but at any rate it’s “the form” that has the menu bar and displays either child windows or child user controls, and when it closes, the application exits.Next is the aforementioned
MainForm. I do the basic stuff like drag-and-dropping someSplitContainersandMenuBars and such in the Visual Studio visual designer, and then I start getting fancy in code: I’ll have certain key interfaces “injected” into theMainForm‘s constructor so that I can make use of them, so that my MainForm can orchestrate child controls without really having to know that much about them.For example, I might have an
IEventBrokerinterface that lets various components publish or subscribe to “events” likeBarcodeScannedorProductSaved. This allows parts of the application to respond to events in a loosely coupled way, without having to rely on wiring up traditional .NET events. For example, theEditProductPresenterthat goes along with myEditProductUserControlcould saythis.eventBroker.Fire("ProductSaved", new EventArgs<Product>(blah))and theIEventBrokerwould check its list of subscribers for that event and call their callbacks. For example, theListProductsPresentercould listen for that event and dynamically update theListProductsUserControlthat it is attached to. The net result is that if a user saves a product in one user control, another user control’s presenter can react and update itself if it happens to be open, without either control having to be aware of each other’s existence, and without theMainFormhaving to orchestrate that event.If I’m designing an MDI application, I might have the
MainFormimplement anIWindowWorkspaceinterface that hasOpen()andClose()methods. I could inject that interface into my various presenters to allow them to open and close additional windows without them being aware of theMainFormdirectly. For example, theListProductsPresentermight want to open anEditProductPresenterand correspondingEditProductUserControlwhen the user double-clicks a row in a data grid in aListProductsUserControl. It can reference anIWindowWorkspace–which is actually theMainForm, but it doesn’t need to know that–and callOpen(newInstanceOfAnEditControl)and assume that the control was shown in the appropriate place of the application somehow. (TheMainFormimplementation would, presumably, swap the control into view on a panel somewhere.)But how the hell would the
ListProductsPresentercreate that instance of theEditProductUserControl? Autofac’s delegate factories are a true joy here, since you can just inject a delegate into the presenter and Autofac will automagically wire it up as if it were a factory (pseudocode follows):So the
ListProductsPresenterknows about theEditfeature set (i.e., the edit presenter and the edit user control)–and this is perfectly fine, they go hand-in-hand–but it doesn’t need to know about all of the dependencies of theEditfeature set, instead relying on a delegate provided by Autofac to resolve all of those dependencies for it.Generally, I find that I have a one-to-one correspondence between a “presenter/view model/supervising controller” (let’s not too caught up on the differences as at the end of the day they are all quite similar) and a “
UserControl/Form“. TheUserControlaccepts the presenter/view model/controller in its constructor and databinds itself as is appropriate, deferring to the presenter as much as possible. Some people hide theUserControlfrom the presenter via an interface, likeIEditProductView, which can be useful if the view is not completely passive. I tend to use databinding for everything so the communication is done viaINotifyPropertyChangedand don’t bother.But, you will make your life much easier if the presenter is shamelessly tied to the view. Does a property in your object model not mesh with databinding? Expose a new property so it does. You are never going to have an
EditProductPresenterand anEditProductUserControlwith one layout and then want to write a new version of the user control that works with the same presenter. You will just edit them both, they are for all intents and purpose one unit, one feature, the presenter only existing because it is easily unit testable and the user control is not.If you want a feature to be replaceable, you need to abstract the entire feature as such. So you might have an
INavigationFeatureinterface that yourMainFormtalks to. You can have aTreeBasedNavigationPresenterthat implementsINavigationFeatureand is consumed by aTreeBasedUserControl. And you might have aCarouselBasedNavigationPresenterthat also implementsINavigationFeatureand is consumed by aCarouselBasedUserControl. The user controls and the presenters still go hand-in-hand, but yourMainFormwould not have to care if it is interacting with a tree-based view or a carousel-based one, and you could swap them out without theMainFormbeing the wiser.In closing, it is easy to confuse yourself. Everyone is pedantic and uses slightly different terminology to convey they subtle (and oftentimes unimportant) differences between what are similar architectural patterns. In my humble opinion, dependency injection does wonders for building composable, extensible applications, since coupling is kept down; separation of features into “presenters/view models/controllers” and “views/user controls/forms” does wonders for quality since most logic is pulled into the former, allowing it to be easily unit tested; and combining the two principles seems to really be what you’re looking for, you’re just getting confused on the terminology.
Or, I could be full of it. Good luck!