to see if they could help me. I have two TextBox each in a different class, and I need that what is written in one is shown in the other.
The one that should receive the data, I have it in xaml:
<TextBox x:Name="mTxtPuntosLocal" Text="{Binding AddPuntoLocal, ElementName=ventana}" HorizontalAlignment="Left" TextWrapping="Wrap" VerticalAlignment="Top" FontSize="100" Background="{x:Null}" BorderBrush="{x:Null}" Width="135"/>
Right now I take the data to prove that it receives like this:
string varPuntoLocal;
public string AddPuntoLocal
{
get
{
return "3";
}
set
{
varPuntoLocal = value;
}
}
Right now I receive the "3" always. I need you to show me what is inside another textbox of another class, as you should reference it in Biding.
Thanks