up vote 0 down vote favorite
share [g+] share [fb]

How do I pass a row information from my class to a grid in the windows form of my application? The row information changes every now and then and I need to pass this updated information to the form

link|improve this question

65% accept rate
feedback

1 Answer

up vote 3 down vote accepted

You can expose an event in your class that the form class can subscribe to. When that event is triggered the form can update the UI as needed. For example:

class ChildForm : Form
{
    public event EventHandler TextChanged;

    public string NewText { get { return textBox1.Text; } }

    void textBox1_TextChanged( object sender, EventArgs e )
    {
        EventHandler del = TextChanged;
        if( del != null )
        {
            del( this, e );
        }
    }
}

class MainForm : Form
{  
    void Foo( )
    {
        using( ChildForm frm = new ChildForm )
        {
            frm.TextChanged += (object sender, EventArgs e) => { label1.Text = frm.NewText; };
            frm.ShowDialog( );
        }
    }
}

You could actually just pass the TextBox.TextChanged event right no through in this example.

link|improve this answer
In my case ChildForm is not a form. Can I still do something like this? – Bi. Apr 28 '10 at 15:51
Yes, that is just an example, the concept is the same. – Ed S. Apr 28 '10 at 18:41
feedback

Your Answer

 
or
required, but never shown

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