vote up 1 vote down star
1

Hello there,

what's the best/proper way of interacting between several windows in C# app? Recently, I've run into a problem where one of program windows has to call method modifying main window. My solution was to create factory-like class, that would arrange all underlying model-data and organize the communication between various windows (through delegates). However, as passing one or two delegates was not a problem, I started thinking what if my other windows would need 10 delegates to interact properly with main window? Are delegates good solution? How to pass them in good way - through constructor, properties? Or maybe the need of using that many delegates is some serious design flaw itself?

flag

75% accept rate
Please see stackoverflow.com/questions/50153/…. This appears to be a duplicate – David Arno Nov 12 '08 at 13:37
Not at all, this is about sending messages between windows in a single application I think, not inter-process communication. – Sekhat Nov 12 '08 at 13:38
Ah, my apologies. I'll re-open it. – David Arno Nov 12 '08 at 13:39

5 Answers

vote up 2 vote down check

You need to split the Model from the view by a Controller. Put an object that will be able to have both form reference and that will be able to manage the shared information.

An other solution is to send the reference of the formX to the formY this way they can communicate.

link|flag
vote up 1 vote down

We use a custom built forms manager that uses the subject/observer pattern.

Every form that is opended is reported to the FormsManager, the FromsManager makes itself an observer of the form.

It also makes the form an observer of the FormsManager.

So you end up with every form observing the FormsManager and the FormsManager observing every form. Each form can then communicate to any other form via the FormsManager without each form having to be aware of all the others.

link|flag
I believe that's what I'm looking for - as my data is displayed in various ways (multiple windows - which somehow need to communicate) observer patter sounds like perfect solution. Thanks a lot! – jimzy Nov 12 '08 at 19:52
vote up 0 vote down

If it's only needing to interact with the main window, why not give a reference to the main window in the constructor of the others?

public class MainForm : Form
{
}

public class OtherForm : Form
{
    protected MainForm MainForm { get; set; }

    public OtherForm(MainForm mainForm) : base()
    {
        this.MainForm = mainForm;
    }
}

EDIT:

Simple and effective.

If your forms need to interact with all the other forms of the application, then a service locator type pattern might be better suited.

link|flag
Doing this in a base SubForm would be better. – yapiskan Nov 12 '08 at 13:37
t'was a brief example :) – Sekhat Nov 12 '08 at 13:39
I see. And that was just a brief comment :) – yapiskan Nov 12 '08 at 13:43
vote up 0 vote down

Previously with MFC, there was something that notify all windows. You will pass an event id with a parameter.

You could do something similar with one delegate that will expose an event id and a collection of parameter.

The greatest advantage of this is that windows only have to implement one gateway.

link|flag
vote up 0 vote down

You can use a single delegate, using a custom EventArgs to pass several informations, like: type of notificaton, additional parameters, etc.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.