Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
454 views
in Technique[技术] by (71.8m points)

c# - How can we pass data from one opened form to another?

How can we pass data from one form to another opened form in winform?

In a windows application one form opens another form. When I am entering some data in parent form then that will reflect in another child form immediately.

How this will happen?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Depends how fancy you want to get.

Simplest approach is just to call methods directly.

Parent

_child = new ChildForm();

then, when you detect updates (TextChanged, SelectedIndexChanged etc.)

_child.UpdateData(someDataCollectedFromParent)

Child

public void UpdateData(MyObject data)
{
    textBox1.Text = data.FirstName;
    textBox2.Text = data.SecondName;
}

Other than that, you could build your message passing mechanism or look into the DataBinding infrastructure.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...