PropertyChanged未按预期工作

时间:2017-11-10 09:52:33

标签: c# wpf mvvm fody fody-propertychanged

我目前正在尝试使用MVVM创建一个使用Fody Property的WPF项目。

<Window x:Class="TestMVVM.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"
    xmlns:local="clr-namespace:TestMVVM"
    mc:Ignorable="d"
    Title="MainWindow" Height="350" Width="525"
    DataContext="{x:Static local:MainWindowViewModel.Instance}"
    x:Name="WindowElement">

<StackPanel Orientation="Horizontal">        
    <TextBlock Text="{Binding Text, Mode=TwoWay}" />
    <Button Content="Browse" Command="{Binding WSDLBrowseClick}"/> 
</StackPanel>

public static class Model
{
    public static string text { get; set; }
}

public class MainWindowViewModel : INotifyPropertyChanged
{

    public event PropertyChangedEventHandler PropertyChanged = (sender, e) => { }; 

    public static MainWindowViewModel Instance => new MainWindowViewModel();

    public string Text { get; set; }
    /*
    {
        get { return Model.text; }
        set
        {
            if (value == Text)
                return;

            Model.text = value;

            PropertyChanged(this, new PropertyChangedEventArgs("Text"));
        }
    }*/

    public ICommand WSDLBrowseClick { get; set; }


    public MainWindowViewModel()
    {
        WSDLBrowseClick = new RelayCommand(BrowseWSDL);
    }


    private void BrowseWSDL()
    {
        Text = "Test";           
    }
}

基本上我希望TextBlock在单击按钮时显示“Test”-Text。执行Click-Command但TextBlock的文本不会更改。我想使用属性Text作为本地内存,使文本块保持最新,以便稍后我可以将值发送到model.text并在那里使用它。但它只有在我使用我目前已注释掉的代码时才有效。不是fody weaver应该为我做同样的事情(只是他创建了另一个私有变量而不是使用model.text)?

3 个答案:

答案 0 :(得分:0)

从示例中我可以看出,您需要使用[ImplementPropertyChanged]属性标记该类。

Source

答案 1 :(得分:0)

您似乎没有通知文本已经发生了变化,因此视图无法确定是否有新值!

尝试使用此代码(完成属性更改逻辑以获得理智)替换Text变量setter:

    public string Text
    {
        get => _text;
        set
        {
            OnPropertyChanged(nameof(Text));
            _text = value;
        }
    }
    private string _text;
    public event PropertyChangedEventHandler PropertyChanged;
    [NotifyPropertyChangedInvocator]
    protected virtual void OnPropertyChanged([CallerMemberName] string propertyName = null)
    {
        PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
    }

PLUS你需要更新你的XAML的一部分来说:

<TextBlock Text="{Binding Text, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" />

答案 2 :(得分:0)

我设法通过将<PropertyChanged/>添加到我的FodyWeavers.xml

来使其工作