i want to bind textbox But it isn’t display the string. Second thing is i want to update Name string periodically. Any solution?
here is my c# code:
public partial class Window1 : Window
{
public String Name = "text";
}
xaml code:
<Grid Name="myGrid" Height="300">
<TextBox Text="{Binding Path=Name}"/>
</Grid>
Hope this will help