我宣布了ViewModel
:
public class DefaultViewModel : WorkspaceViewModel
{
public DefaultViewModel()
{
this.DisplayName = "Welcome!";
}
}
我利用CollectionViewSource
来设置我的活动“工作区”:
// this code comes from the MainWindowViewModel.cs
void SetActiveWorkspace(WorkspaceViewModel workspace)
{
Debug.Assert(this.Workspaces.Contains(workspace));
ICollectionView collectionView =
CollectionViewSource.GetDefaultView(this.Workspaces);
if (collectionView != null)
collectionView.MoveCurrentTo(workspace);
}
并在MainWindowViewModel.cs
的构造函数中设置了默认的“工作区”:
public MainWindowViewModel()
{
this.DisplayName = "Big File Reader";
var viewModel = new DefaultViewModel();
this.Workspaces.Add(viewModel);
this.SetActiveWorkspace(viewModel);
}
此时一切都应该很好。现在,我想在新标签中显示每个“工作区”,因此我标记了TabControl
并对其进行了同步:
<ContentControl Content="{Binding Path=Workspaces}">
<ContentControl.ContentTemplate>
<DataTemplate>
<TabControl IsSynchronizedWithCurrentItem="True"
ItemsSource="{Binding}"
Margin="4">
<TabControl.ItemTemplate>
<DataTemplate>
<DockPanel Width="120">
<Button Command="{Binding Path=CloseCommand}"
Content="X"
Cursor="Hand"
DockPanel.Dock="Right"
Focusable="False"
FontFamily="Courier"
FontSize="10"
FontWeight="Bold"
Margin="0,1,0,0"
Padding="4"
VerticalContentAlignment="Bottom"
Style="{DynamicResource
ResourceKey={
x:Static ToolBar.ButtonStyleKey}}"/>
<ContentPresenter
Content="{Binding Path=DisplayName}"
VerticalAlignment="Center"/>
</DockPanel>
</DataTemplate>
</TabControl.ItemTemplate>
</TabControl>
</DataTemplate>
</ContentControl.ContentTemplate>
</ContentControl>
然后,在外部资源文件中,我定义了视图模型的默认视图:
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:l="clr-namespace:BigFileReader"
xmlns:lv="clr-namespace:BigFileReader.Views">
<DataTemplate DataType="l:DefaultViewModel">
<lv:DefaultView/>
</DataTemplate>
</ResourceDictionary>
我在主窗口中包含了该资源字典:
<Window.Resources>
<ResourceDictionary Source="MainWindowResources.xaml" />
</Window.Resources>
现在,每个TabItem
的标题显示正常。它按预期显示DisplayName
。
但是,ContentTemplate
的{{1}}未获取默认视图,只显示TabItem
TextBlock
ToString()
DefaultViewModel
1}},当然是该类型的全名。
为什么没有选择默认模板?
答案 0 :(得分:4)
改变这个:
<DataTemplate DataType="l:DefaultViewModel">
<lv:DefaultView/>
</DataTemplate>
到此:
<DataTemplate DataType="{x:Type l:DefaultViewModel}">
<lv:DefaultView/>
</DataTemplate>
这件事发生在我身上。我正在努力工作1个小时,才发现这个简单的解决方案。尝试一下。