Text
のTextBlock
プロパティを自分のプロパティにバインドしようとしましたが、テキストが更新されません。
[〜#〜] xaml [〜#〜]
<Window x:Name="window" x:Class="Press.MainWindow"
xmlns="http://schemas.Microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.Microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.Microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d"
Title="Press analyzer" Height="350" Width="525" ContentRendered="Window_ContentRendered"
d:DataContext="{d:DesignData MainWindow}">
...
<StatusBar Name="StatusBar" Grid.Row="2" >
<TextBlock Name="StatusBarLabel" Text="{Binding Message}"/>
</StatusBar>
</Window>
C#
public partial class MainWindow : Window, INotifyPropertyChanged
{
private string _message;
public string Message
{
private set
{
_message = value;
OnPropertyChanged("Message");
}
get
{
return _message;
}
}
public event PropertyChangedEventHandler PropertyChanged;
[NotifyPropertyChangedInvocator]
protected virtual void OnPropertyChanged([CallerMemberName] string propertyName = null)
{
PropertyChangedEventHandler handler = PropertyChanged;
if (handler != null) handler(this, new PropertyChangedEventArgs(propertyName));
}
}
バインディングを解決するには、MainWindowのコンストラクタでMainWindowのDataContext
をそれ自体に設定します。
public MainWindow()
{
InitializeComponent();
this.DataContext = this;
}
[〜#〜]または[〜#〜]
DataContextを設定しない場合は、RelativeSource
を使用してXAMLから明示的にバインディングを解決する必要があります。
<TextBlock Name="StatusBarLabel"
Text="{Binding Message, RelativeSource={RelativeSource
Mode=FindAncestor, AncestorType=Window}}"/>
注-Visual Studioの出力ウィンドウで、バインディングエラーをいつでも確認できます。