我有用户控制:
<UserControl>
<TextBox Name="TB1"/>
<TextBox Name="TB2"/>
</UserControl>
后面的代码:
public partial class MyControl : UserControl
{
public TwoStrings TsObj { get; set; }
public MyControl()
{
InitializeComponent();
}
}
在哪里
public class TwoStrings
{
string S1 { get; set; }
string S2 { get; set; }
}
如何以最少的代码更改将 TsObj.S1 绑定到 TB1.Text 和 TsObj.S2 到 TB2.Text?不应更改 TwoStrings。对象的更新应该反映在控制上。请提供代码示例。