获取视图模型 (wpf) 中的选定选项卡
本文关键字:选项 视图 模型 wpf 获取 | 更新日期: 2023-09-27 18:32:50
我有一个主视图,它有一个选项卡控件。选择选项卡后,它将调用要显示的相应视图。我在视图模型中有一个函数,它必须知道选择了哪个选项卡来执行操作。我如何实现这一点?视图模型如何知道选择了哪个选项卡?
:
<Window x:Class="WpfApplication2.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:WpfApplication2"
Title="MainWindow" Height="350" Width="525">
<Window.Resources>
<local:TestViewModel x:Key="MainViewModel"/>
</Window.Resources>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
<RowDefinition Height="50"/>
</Grid.RowDefinitions>
<TabControl DataContext="{StaticResource MainViewModel}"
SelectedIndex="{Binding Selected}"
Grid.Row="0"
x:Name="TestTabs">
<TabItem Header="Section 1"/>
<TabItem Header="Section 2"/>
<TabItem Header="Section 3"/>
</TabControl>
<Button Content="Check
Selected Index"
Grid.Row="1"
x:Name="TestButton"
Click="TestButton_OnClick"/>
</Grid>
</Window>
此处以声明方式将模型定义为数据上下文。selectedindex 属性绑定到模型,因此每当它发生变化时,它在视图模型上映射到的属性也会改变
class TestViewModel : INotifyPropertyChanged
{
private int _selected;
public int Selected
{
get { return _selected; }
set
{
_selected = value;
OnPropertyChanged("Selected");
}
}
public event PropertyChangedEventHandler PropertyChanged;
public void OnPropertyChanged(string property)
{
if (PropertyChanged != null)
{
PropertyChanged(this, new PropertyChangedEventArgs(property));
}
}
}
这将实现 INotifyPropertyChanged,以便视图将向其注册。在此处的处理程序中,我输出 Selected 的值以在您更改它们时显示。
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
private void TestButton_OnClick(object sender, RoutedEventArgs e)
{
var vm = TestTabs.DataContext as TestViewModel;
MessageBox.Show(string.Format("You selected tab {0}", vm.Selected));
}
}
这将获取视图模型,然后向我们显示属性实际上已更新。
在视图中,将 SelectedIndex 属性放在 TabControl 上:
xmlns:cal="http://www.caliburnproject.org"
<TabControl cal:Message.Attach="[SelectionChanged] = [OnTabSelectionChanged()]"
SelectedIndex="{Binding SelectedIndexTab}">
<TabItem Header="Tab 1"/>
<TabItem Header="Tab 2"/>
</TabControl>
在 ViewModel 中,声明要操作的公共属性名称 SelectedIndexTab 和 OnTabSelectionChanged() 方法。
public int SelectedIndexTab { get; set; }
在此示例中,我使用 Caliburn 来捕获 TabControl 的 SelectionChange 事件。
可以使用 Selector 基类提供的 SelectionChanged 事件。 SelectionChangedEventArgs 将包含新选择(和取消选择)的项目。 或者,可以将选择器基类的 SelectedItem 绑定到 ViewModel 中的属性,然后在资源库中执行一些逻辑。
但一般来说,将特定于视图的对象传递给 ViewModel 被视为违反 MVVM - 它将 UI 框架(在本例中为 WPF)与更通用的 ViewModel 逻辑紧密耦合。 更好的方法是将事件处理程序放在 UI 代码隐藏中,而这些代码隐藏又会适当地作用于视图模型,但不会将 View 对象作为参数传递。
这里有一个简单的例子。
您应该将选项卡的 ItemsSource 绑定到您的 ObservableCollection,并且应该包含有关应创建的选项卡的信息的模型。
下面是表示选项卡页的 VM 和模型:
public class ViewModel
{
public ObservableCollection<TabItem> Tabs { get; set; }
public ViewModel()
{
Tabs = new ObservableCollection<TabItem>();
Tabs.Add(new TabItem { Header = "One", Content = "One's content" });
Tabs.Add(new TabItem { Header = "Two", Content = "Two's content" });
}
}
public class TabItem
{
public string Header { get; set; }
public string Content { get; set; }
}
下面是视图和 VM 绑定
<Window x:Class="WpfApplication12.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<Window.DataContext>
<ViewModel
xmlns="clr-namespace:WpfApplication12" />
</Window.DataContext>
<TabControl
ItemsSource="{Binding Tabs}">
<TabControl.ItemTemplate>
<!-- this is the header template-->
<DataTemplate>
<TextBlock
Text="{Binding Header}" />
</DataTemplate>
</TabControl.ItemTemplate>
<TabControl.ContentTemplate>
<!-- this is the body of the TabItem template-->
<DataTemplate>
<----- usercontrol namespace goes here--->
</DataTemplate>
</TabControl.ContentTemplate>
来源:友情链接