我正在创建一种基础 WPF 应用程序来托管 WPF 用户控件,它将出现在程序集中(稍后将是 AddIns)。应用程序和用户控件遵循 MVVM。不幸的是,我是 WPF 和 MVVM 的新手,所以我对特价商品不是很熟悉。我进行了很多搜索,但没有任何帮助(或者我不理解解决方案,这可能是可能的)。
所以我的应用程序包含用户控件的基本功能和一个分为菜单栏和用户控件占位符的窗口。这是我到目前为止所拥有的,有一个按钮可以选择 VersionControl 控件,它将在我加载用户控件的 MainWindow 的 viewModel 中调用一个函数,但我没有让它显示在 MainWindow 中。
<Grid DataContext="{StaticResource Windows1ViewModel}">
<Grid.RowDefinitions>
<RowDefinition Height="50" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Canvas Grid.Row="0" >
<Button Content="VersionControl"
Style="{StaticResource ButtonStyle1}"
HorizontalAlignment="Center"
Command="{Binding LoadVersionControl}" />
</Canvas>
<Canvas Grid.Row="1">
<ItemsControl Name="ControlCanvas" />
</Canvas>
</Grid>
ViewModel 定义:
public ICommand LoadVersionControl { get { return new DelegateCommand(OnLoadVersionControl); } }
但是我需要在 OnLoadVersionControl 函数中做什么?我有 VersionControlView 和 VersionControlViewModel,但不知道如何在我的应用程序中显示它。非常感谢您的帮助,
麦克风