web-dev-qa-db-ja.com

WPF TextBlockバインディングが機能しない

TextTextBlockプロパティを自分のプロパティにバインドしようとしましたが、テキストが更新されません。

[〜#〜] 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));
    }
}
11
beta-tank

バインディングを解決するには、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の出力ウィンドウで、バインディングエラーをいつでも確認できます。

17
Rohit Vats