从另一个视图模型更改视图模型的属性



我的 MainView.xaml 上有 ListBox,选择该项会强制 ContentControl 显示不同的 UserControls。我在这个道具中使用了Caliburn.Micro库。下面是一些代码:

<ListBox Grid.Row="1" Grid.Column="1" x:Name="ItemsListBox" SelectedItem="0" ItemsSource="{Binding Items}">
<ListBox.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding Name}" />
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
<TextBlock Grid.Row="2" Grid.Column="1" Text="{Binding TextBlock1Text}" x:Name="TextBlock1"/>
<ContentControl Grid.Row="3" Grid.Column="1" Content="{Binding ElementName=ItemsListBox, Path=SelectedItem.Content}" />

主视图模型.cs

private string _name;
public string Name
{
get => _name;
set
{
_name = value;
NotifyOfPropertyChange(() => Name);
}
}
private string _textBlock1Text;
public string TextBlock1Text
{
get => _textBlock1Text;
set
{
_textBlock1Text = value;
NotifyOfPropertyChange(() => TextBlock1Text);
}
}
public MainViewModel()
{
TextBlock1Text = "Test";
Items = new ObservableCollection<ItemsModel>()
{
new ItemsModel { Name="Useless", Content=null },
new ItemsModel { Name="TextChangerViewModel", Content=new TextChangerViewModel(TextBlock1Text) }
};
}
public ObservableCollection<ItemsModel> Items { get; set; }

项目模型.cs

public class ItemsModel
{
public string Name { get; set; }
public object Content { get; set; }
}

最后是TextChangerViewModel.cs

public class TextChangerViewModel : Conductor<object>
{
private string _textBlock1Text;
public string TextBlock1Text
{
get => _textBlock1Text;
set
{
_textBlock1Text = value;
NotifyOfPropertyChange(() => TextBlock1Text);
}
}
public TextChangerViewModel(string textBlock1Text) //passing parameter from another ViewModel
{
TextBlock1Text = textBlock1Text;
}
}

因此,主要问题是如何从TextChangerViewModel.cs更改MainViewModel中的TextBlock1Text(以及.xaml中TextBlock的文本值.cs?我正在考虑在我的Items ObservableCollection上使用类似NotifyCollectionChanged的东西,但它适用于ItemsModel的集合,而不是VM的集合,所以我被困在这里。

我也不确定如果我的目标是 MVVM 模式,在 ItemsModel .cs 中使用public object Content { get; set; }是否是一件好事,但我不知道另一种方法(我对 MVVM 很陌生(。

UPD

我正在寻找属性更改方式,因为我需要从另一个用户控件更改 TextBlock1Text 文本。假设我的TextChangerView.xaml上有按钮:<Button Grid.Row="0" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Content="Change da text" cal:Message.Attach="ChangeTextButton"/>

单击它后,我希望父级MainView.xaml上的文本更改。但问题是,我不知道在这种情况下如何更改属性,正如我在上面写的那样。

更改 textblox1 的绑定以引用所选项目。

<TextBlock Grid.Row="2" Grid.Column="1" Text="{Binding ElementName=ItemsListBox, Path=SelectedItem.Name}" x:Name="TextBlock1"/>

<TextBlock Grid.Row="2" Grid.Column="1" Text="{Binding ElementName=ItemsListBox, Path=SelectedItem.Content.TextBlock1Text}" x:Name="TextBlock1"/>

相关内容

  • 没有找到相关文章

最新更新