簡體   English   中英

WPF + Caliburn Micro + MVVM:TabItem處理

[英]WPF + Caliburn Micro + MVVM: TabItem handling

我正在嘗試使用WPF,Caliburn Micro和MVVM模式制作一個包含tabcontrol的彈出窗口,在這種情況下無需使用任何代碼。 tabcontrol包含1個以上的tabitem。 在SO中挖掘了一些線程一段時間后,我結合了找到的解決方案,可以創建彈出窗口,並用tabcontrol及其Tabitems填充它( 我從此線程中獲取它 )。

問題:選項卡顯示視圖模型中的內容(文本),但不顯示視圖中的內容。 請查看此處附帶的代碼。

期望我希望看到文本“ Tab Item 1”作為TabItem1標頭,而文本“ Selection One”作為TabItem1中的內容。 現在,TabItems的標題和內容都包含相同的文本“ Tab Item 1”。

我想念什么嗎? 我在這里附上代碼。 請隨時更改代碼。 任何提示都受到高度贊賞。

代碼順序:

  • TabItem1,TabItem2視圖和視圖模型
  • ITabItem
  • 彈出窗口視圖和視圖模型
  • AppBootstrapper,Shell視圖和視圖模型

TabItem1ViewModel (TabItem2ViewModel具有相同的內容)

public class TabItem1ViewModel : Screen, ITabItem
{
    public TabItem1ViewModel() => DisplayName = "Tab Item 1";
}

注意:在下面的TabItem視圖中,我使用Label顯示文本“選擇一”,但此文本根本沒有出現。 在視圖模型中定義的僅顯示名稱“標簽項1”顯示為TabItem1的內容

TabItem1View (TabItem2View具有相同的內容)

<UserControl
    x:Class="CmTabControl.Views.TabItem1View"
    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"
    d:DesignHeight="450"
    d:DesignWidth="800"
    mc:Ignorable="d">
    <Grid>
        <TabItem x:Name="TabItem1" Header="{Binding Path=DisplayName}">
            <Grid x:Name="TabItem1ContentGrid">
                <Label HorizontalAlignment="Left"                     
                    VerticalAlignment="Top"
                    Content="Selection One" />
            </Grid>
        </TabItem>
    </Grid>
</UserControl>

ITabItem (是的,它只是一個空接口)

public interface ITabItem : IScreen
{
}

PopUpViewModel

public class PopUpViewModel : Screen
{
    public PopUpViewModel()
    {
        TabItems.Add(new TabItem1ViewModel());
        TabItems.Add(new TabItem2ViewModel());
    }

    private readonly BindableCollection<ITabItem> _tabItems = new BindableCollection<ITabItem>();
    public BindableCollection<ITabItem> TabItems
    {
        get => _tabItems;
        set
        {
            if (_tabItems == null)
            {
                return;
            }
            _tabItems.Clear();
            _tabItems.AddRange(value);
            NotifyOfPropertyChange(() => TabItems);
        }
    }
}

PopUpView

<Window
    x:Class="CmTabControl.Views.PopUpView"
    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:local="clr-namespace:CmTabControl.Views"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    Title="PopUpView"
    Width="800"
    Height="450"
    mc:Ignorable="d">
    <Grid Margin="3,8,3,3" HorizontalAlignment="Stretch"
        VerticalAlignment="Stretch">
        <TabControl x:Name="TabItems" />
    </Grid>
</Window>

AppBootstrapper

public class AppBootstrapper : BootstrapperBase
{
    private readonly SimpleContainer _container = new SimpleContainer();

    public AppBootstrapper() => Initialize();
    protected override object GetInstance(Type serviceType, string key) => _container.GetInstance(serviceType, key);
    protected override IEnumerable<object> GetAllInstances(Type serviceType) => _container.GetAllInstances(serviceType);
    protected override void BuildUp(object instance) => _container.BuildUp(instance);

    protected override void Configure()
    {
        base.Configure();

        _container.Singleton<IWindowManager, WindowManager>();
        _container.Singleton<IEventAggregator, EventAggregator>();
        _container.Singleton<ShellViewModel>();
        _container.PerRequest<PopUpViewModel>(); // Or Singleton if there'll only ever be one
    }

    protected override void OnStartup(object sender, StartupEventArgs e)
    {
        base.OnStartup(sender, e);
        DisplayRootViewFor<ShellViewModel>();
    }
}

ShellViewModel

public class ShellViewModel : Conductor<object>.Collection.AllActive
{
    private IWindowManager _windowManager;

    public ShellViewModel(PopUpViewModel popUpVm)
    {
        DisplayName = "Shell Window";
        PopUpViewModel = popUpVm;
    }

    public PopUpViewModel PopUpViewModel { get; set; }

    public sealed override void ActivateItem(object item) => base.ActivateItem(item);

    public void OpenPopUp()
    {
        ActivateItem(PopUpViewModel);
        if (_windowManager == null) _windowManager = new WindowManager();
        _windowManager.ShowDialog(PopUpViewModel, null, null);
    }

    public sealed override string DisplayName { get; set; }
}

ShellView

<UserControl
    x:Class="CmTabControl.Views.ShellView"
    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"
    d:DesignHeight="300"
    d:DesignWidth="300"
    mc:Ignorable="d">
    <Grid Width="300" Height="300"
        HorizontalAlignment="Center" VerticalAlignment="Center">
        <Button x:Name="OpenPopUp" Width="100" Height="35"
            Content="Open Popup" />
    </Grid>
</UserControl>

補充:實時視覺樹的屏幕截圖。 在此處輸入圖片說明

我找到了使用模板的解決方案:

PopUpViewModel添加SelectedTab

public sealed class PopUpViewModel : Screen
{
    private readonly BindableCollection<ITabItem> _tabItems = new BindableCollection<ITabItem>();
    private IScreen _selectedTab;


    public PopUpViewModel()
    {
        DisplayName = "Popup";
        TabItems.Add(new TabItem1ViewModel());
        TabItems.Add(new TabItem2ViewModel());
        SelectedTab = TabItems.FirstOrDefault();
    }


    public BindableCollection<ITabItem> TabItems
    {
        get => _tabItems;
        set
        {
            if(_tabItems == null)
                return;
            _tabItems.Clear();
            _tabItems.AddRange(value);
            NotifyOfPropertyChange(() => TabItems);
        }
    }

    public IScreen SelectedTab
    {
        get => _selectedTab;
        set
        {
            _selectedTab = value;
            NotifyOfPropertyChange();
        }
    }
}

PopUpView

<Grid Margin="3, 8, 3, 3"
      HorizontalAlignment="Stretch"
      VerticalAlignment="Stretch">
    <TabControl ItemsSource="{Binding TabItems}"
                SelectedItem="{Binding SelectedTab,
                               UpdateSourceTrigger=PropertyChanged}">
        <TabControl.ItemTemplate>
            <DataTemplate>
                <Label Content="{Binding DisplayName}" />
            </DataTemplate>
        </TabControl.ItemTemplate>
        <TabControl.ContentTemplate>
            <DataTemplate>
                <ContentControl cal:View.Model="{Binding}" />
            </DataTemplate>
        </TabControl.ContentTemplate>
    </TabControl>
</Grid>

現在,您僅將TabItem內容添加到頁面TabItem1View

<UserControl x:Class="WpfTestApp.Views.Tabs.TabItem1View"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
             xmlns:local="clr-namespace:WpfTestApp.Views.Tabs"
             mc:Ignorable="d"
             d:DesignHeight="450"
             d:DesignWidth="800">

    <Grid x:Name="TabItem1ContentGrid">
        <Label HorizontalAlignment="Left"
               VerticalAlignment="Top"
               Content="Selection One" />
    </Grid>
</UserControl>

編輯:

SelectedTab就在其中,因此默認情況下選擇第一個選項卡。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM