web-dev-qa-db-fra.com

La liaison WPF TextBlock ne fonctionne pas

J'essaye de lier la propriété Text de TextBlock à ma propriété mais le texte n'est pas mis à jour.

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

Définissez DataContext de MainWindow sur lui-même dans le constructeur de MainWindow pour résoudre la liaison:

public MainWindow()
{
   InitializeComponent();
   this.DataContext = this;
}

OU

Si vous ne définissez pas DataContext, vous devez résoudre explicitement la liaison à partir de XAML en utilisant RelativeSource:

<TextBlock Name="StatusBarLabel"
           Text="{Binding Message, RelativeSource={RelativeSource 
                                   Mode=FindAncestor, AncestorType=Window}}"/>

Remarque - Vous pouvez toujours vérifier la fenêtre de sortie de Visual Studio pour toute erreur de liaison.

17
Rohit Vats