This is bindable property in viewmodel
private string _tooltip;
public string Tooltip
{
get { return _tooltip; }
set
{
_tooltip = value;
SetProperty(ref _tooltip, value);
}
}
xaml
<TextBox HorizontalAlignment="Stretch"
Margin="2"
Text="{Binding Path=Tooltip, Mode=TwoWay}"
MinWidth="40"
Height="24" />
When this tooltip is changed in the viewmodel, view is not updated. How to update the view from source to target?