vue-java-tutorials/CSharp/WPFTutorial/WPF-26-MVVM/Views/MainView.xaml

24 lines
1.2 KiB
Plaintext
Raw Normal View History

2025-06-22 20:21:42 +08:00
<Window x:Class="WPF_26_MVVM.Views.MainView"
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:prism="http://prismlibrary.com/"
mc:Ignorable="d"
prism:ViewModelLocator.AutoWireViewModel="True"
Title="MainWindow" Height="450" Width="800">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition />
</Grid.RowDefinitions>
<StackPanel Grid.Row="0" Orientation="Horizontal">
<Button Margin="5" Command="{Binding OpenCommand}" CommandParameter="ViewA">打开模块A</Button>
<Button Margin="5" Command="{Binding OpenCommand}" CommandParameter="ViewB">打开模块B</Button>
<Button Margin="5" Command="{Binding OpenCommand}" CommandParameter="ViewC">打开模块C</Button>
</StackPanel>
<ContentControl Grid.Row="1" prism:RegionManager.RegionName="ContentRegion" />
</Grid>
</Window>