0

我的 ViewModel 中有一个绑定到 aContentControl的属性,就像我在这个问题中读到的那样:WPF:如何动态加载用户控件?但是,当尝试对此进行测试时,我的应用程序甚至没有运行,我收到一条消息,指出 Visual Studion XAML UI 设计器意外崩溃,让我不知道这是如何发生以及为什么发生。ContentUserControl

此外,在我的代码中,您可能会注意到我使用 aUserControl而不是FrameworkElement上述问题中建议的,我尝试了两种方法,但它们都给了我相同的错误。

编辑:经过一些测试,我发现问题出在这行代码上,虽然我不明白为什么

    private UserControl _currentControl = new TableView();

EDIT2:上面的代码不应该是一个问题,因为 TableView 是一个UserControl,当我构建应用程序时,我没有得到任何错误

与往常一样,我们将不胜感激任何帮助!

主窗口.xaml

<Fluent:RibbonWindow x:Class="DatabaseExplorer.MainWindow"
        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"
        xmlns:Fluent="clr-namespace:Fluent;assembly=Fluent"
        xmlns:View="clr-namespace:DatabaseExplorer.Views"
        xmlns:ignore="http://www.ignore.com"
        mc:Ignorable="d ignore"
        Height="300"
        Width="300"
        Title="Application"
        DataContext="{Binding Main, Source={StaticResource Locator}}">

    <Fluent:RibbonWindow.Resources>
        <ResourceDictionary>
            <ResourceDictionary.MergedDictionaries>
                <ResourceDictionary Source="Skins/MainSkin.xaml" />
            </ResourceDictionary.MergedDictionaries>
        </ResourceDictionary>
    </Fluent:RibbonWindow.Resources>

    <Grid x:Name="LayoutRoot">
        <Grid.RowDefinitions>
            <RowDefinition Height="Auto" />
            <RowDefinition Height="*" />
        </Grid.RowDefinitions>
        <Fluent:Ribbon>
            ...
        </Fluent:Ribbon>
        <ContentControl Grid.Row="1"  Content="{Binding CurrentControl}" />
    </Grid>
</Fluent:RibbonWindow>

主视图模型.cs

...
    /// <summary>
    /// The <see cref="CurrentControl" /> property's name.
    /// </summary>
    public const string CurrentControlPropertyName = "CurrentControl";

    private UserControl _currentControl = new TableView();

    /// <summary>
    /// Sets and gets the CurrentControl property.
    /// Changes to that property's value raise the PropertyChanged event. 
    /// </summary>
    public UserControl CurrentControl
    {
        get
        {
            return _currentControl;
        }

        set
        {
            if (_currentControl == value)
            {
                return;
            }

            RaisePropertyChanging(CurrentControlPropertyName);
            _currentControl = value;
            RaisePropertyChanged(CurrentControlPropertyName);
        }
    }
...
4

1 回答 1

1

请不要调用您的类 MainViewModel 并使用 UserControl 将代码放入其中!那不是 MVVM 方式:)

如果你想在 MVVM 中处理某种 CurrentWorkspace,那么你应该使用 Viewmodels 和 DataTemplates。所以改为将用户控件设置为 CurrentWorkspace - 只需设置一个视图模型。

所有 ContentControl Content 属性需要的是一个 Datatemplate 来了解如何呈现您的视图模型。

主视图模型.cs

 public object CurrentWorkspace {get;set;}
 ...
 this.CurrentWorkspace = this._myViewmodelInstanceWithSomeCoolThings;

xml

<ContentControl Grid.Row="1"  Content="{Binding CurrentWorkspace }" />

内容控制保持不变,但需要一个数据模板来呈现您的视图模型

xml - 资源

 <Fluent:RibbonWindow.Resources>
    <ResourceDictionary>
        <ResourceDictionary.MergedDictionaries>
            <ResourceDictionary Source="Skins/MainSkin.xaml" />
        </ResourceDictionary.MergedDictionaries>
        <DataTemplate DataType="{x:Type local:ViewModelWithSomeCoolthingsClass}">
          <local:MyViewForViewModelWithSomeCoolthingsClass />
        </DataTemplate>
    </ResourceDictionary>      
 </Fluent:RibbonWindow.Resources>
于 2013-05-31T09:52:00.300 回答