我有一个主视图,它有一个制表符控件。选择选项卡后,它会调用相应的视图进行显示。我在视图模型中有一个函数,它必须知道选择了哪个选项卡来执行操作。我该如何实现这一目标?视图模型将如何知道选择了哪个选项卡?
答案 0 :(得分:8)
很简单:
<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));
}
}
这将获取viewmodel,然后向我们显示属性实际上已更新。
答案 1 :(得分:0)
您可以使用Selector基类提供的SelectionChanged事件。 SelectionChangedEventArgs将包含新选择(和取消选择)的项目。或者,您可以将Selector Base类的SelectedItem绑定到ViewModel中的属性,然后在setter中执行一些逻辑。
通常,将视图特定对象传递给ViewModel会被视为违反MVVM - 它将UI框架(在本例中为WPF)与更通用的ViewModel逻辑紧密耦合。更好的方法是将事件处理程序放在UI代码隐藏中,然后依次对视图模型起作用,但不将View对象作为参数传递。
答案 2 :(得分:0)
这是一个简单的例子。
您应该将Tab的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; }
}
这是视图和虚拟机绑定
<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>
来源:link
答案 3 :(得分:0)
在View中,您将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事件。