如何在单击按钮时更改内容控件的内容。例如,当我点击某个按钮时,我有一个名为“主页”的用户控件的内容控件,我想用另一个用户控件更改内容控件的内容。
<Window ...
xmlns:ViewModel="clr-namespace:PAL_PlayAndLearn.ViewModels"
xmlns:Pages="clr-namespace:PAL_PlayAndLearn.Pages"
...>
<Window.DataContext>
<ViewModel:AppViewModel />
</Window.DataContext>
<Grid>
<ContentControl Content="{Binding HomePage}"/>
</Grid>
</Window>
你能帮助我,因为我没有多少时间。
答案 0 :(得分:7)
您基本上需要一个主视图或父视图模型。此视图模型中应包含BaseViewModel
类型的属性,例如名为ViewModel
。 其他网页浏览模型的所有应扩展此基础class
。
<ContentControl Content="{Binding ViewModel}" />
现在,因为您的视图模型都具有BaseViewModel
的基本类型,所以 all 可以设置为ViewModel
属性的值...所以要加载新视图模型,您将其设置为此属性的值:
ViewModel = new HomeView();
但是我们如何显示相关的观点呢?让我们使用DataTemplate
来为我们做这个...为你将在这里使用的每个视图模型添加这个和类似的条目:
<DataTemplate DataType="{x:Type ViewModels:HomeViewModel}">
<Views:HomeView />
</DataTemplate>
现在,只要我们将相关视图模型设置为ViewModel
属性的值,WPF就会呈现我们的视图。最后,Button
?好吧,我们需要主视图模型中的ICommand
与主视图中的Button
相关联,我建议使用RelayCommand
。请注意,您需要更改主视图:
<Grid>
<!-- Add your Buttons or Menu here, above where the views will be -->
<ContentControl Content="{Binding HomePage}"/>
</Grid>
因此,当在主视图中单击Button
时,您只需更改ViewModel
属性的值,DataTemplate
将确保在UI中呈现相关视图。这是我自己的自定义ICommand
实现之一,如RelayCommand
将加载视图模型(如果尚未加载):
public ICommand DisplayHomeView
{
get { return new ActionCommand(action => ViewModel = new HomeViewModel(),
canExecute => !IsViewModelOfType<HomeViewModel>()); }
}
答案 1 :(得分:1)
请注意本地:UserControlSpecialSignalTtrModel继承自SignalProviderSpecial。
<UserControl
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:ParametricStudyAnalysis.ScopeSelection.Special"
xmlns:xcdg="http://schemas.xceed.com/wpf/xaml/datagrid" x:Class="ParametricStudyAnalysis.ScopeSelection.Special.UserControlAddSpecialSignal"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">
<UserControl.DataContext>
<local:UserControlAddSpecialSignalModel></local:UserControlAddSpecialSignalModel>
</UserControl.DataContext>
<UserControl.Resources>
<DataTemplate DataType="{x:Type local:UserControlSpecialSignalTtrModel}">
<local:UserControlSpecialSignalTtr/>
</DataTemplate>
</UserControl.Resources>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition></RowDefinition>
</Grid.RowDefinitions>
<GroupBox Header="Signal type" Grid.Row="0" Padding="5">
<xcdg:DataGridControl Name="DataGrid" SelectionMode="Single" ItemsSource="{Binding SpecialSignalEntries}"
SelectedItem="{Binding SpecialSignalEntrySelected}" Height="200">
<xcdg:DataGridControl.Columns>
<xcdg:Column FieldName="Name" Title="Type of special signal" ReadOnly="True"></xcdg:Column>
</xcdg:DataGridControl.Columns>
</xcdg:DataGridControl>
</GroupBox>
<GroupBox Header="Parameters" Grid.Row="1" Margin="0,3,0,0" Padding="5">
<ContentControl Name="MyContentControl"
DataContext="{Binding SpecialSignalEntrySelected, Mode=OneWay}"
Content="{Binding SignalProviderSpecial}">
</ContentControl>
</GroupBox>
</Grid>
</UserControl>