customerqueueview.xaml

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

XAML
21
字号
<UserControl x:Class="BankTellerModule.CustomerQueueView"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
	<Grid MinHeight="150" MinWidth="150">
		<Grid.RowDefinitions>
			<RowDefinition Height="Auto"/>
			<RowDefinition Height="Auto"/>
			<RowDefinition Height="*"/>
		</Grid.RowDefinitions>
		<Grid.ColumnDefinitions>
			<ColumnDefinition Width="*"/>
		</Grid.ColumnDefinitions>

		<Label Style="{StaticResource Title}">My Customers</Label>

		<Button Grid.Row="1" Click="OnAcceptCustomer">Accept Customer</Button>

		<ListBox x:Name="listCustomers" Grid.Row="2" SelectionChanged="OnCustomerSelectionChanged"/>
	</Grid>
</UserControl>

⌨️ 快捷键说明

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