开发者

when dialog result for form get return

hi i have on object (serverconnection from sqlserver Managament object ) i need send this object to other form to configure connection option and connect so object return but when i send this object t开发者_JAVA百科o form2 how return it or when i use form.ShowDialog() when this return or how return from this


You can introduce a property into your second form, e.g.:

if( form2.ShowDialog() == DialogResult.OK )
{
    var configuration = form2.Configuration;
}

here the property is called Configuration and holds the object you need.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜