我目前正在尝试使用更改的 Fody 属性创建一个带有 MVVM 的 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 显示“测试”文本。Click-Command 被执行,但 TextBlock 的文本没有改变。我想使用属性 Text 作为本地内存,使文本块保持最新,以便稍后将值发送到 model.text 并在那里使用它。但它只有在我使用我当前注释掉的代码时才有效。fody weaver 不应该为我做同样的事情吗(只是他创建了另一个私有变量而不是使用 model.text)?