sidebarview.xaml

来自「wpf和cab的结合使用源码(转载)」· XAML 代码 · 共 24 行

XAML
24
字号
<UserControl x:Class="BankTellerModule.SideBarView"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
	xmlns:cab="clr-namespace:Microsoft.Practices.CompositeUI.Windows.Workspaces;assembly=Microsoft.Practices.CompositeUI.Windows"
	xmlns:cabroot="clr-namespace:Microsoft.Practices.CompositeUI.Windows;assembly=Microsoft.Practices.CompositeUI.Windows"
	xmlns:btm="clr-namespace:BankTellerModule">
	<Grid>
		<Grid.RowDefinitions>
			<RowDefinition Height="10*"/>
			<RowDefinition Height="Auto"/>
			<RowDefinition Height="90*"/>
		</Grid.RowDefinitions>
		<Grid.ColumnDefinitions>
			<ColumnDefinition Width="*"/>
		</Grid.ColumnDefinitions>

		<cabroot:SmartPartPlaceholder SmartPartName="UserInfo"/>
		
		<GridSplitter Grid.Row="1" ResizeDirection="Rows" Height="5" HorizontalAlignment="Stretch"/>

		<btm:CustomerQueueView Grid.Row="2"/>
	</Grid>
</UserControl>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?