how can I do a bind if the property to show is a property from a property, like this case:
Xaml:
<TextBox Text="{Binding log.Message}"/> ???? In the class defined as Datacontext, I declare a log variable:
public Log log = new Log(); the Log class:
public class Log : INotifyPropertyChanged { public static string Message{ get { return message; } } ....