32 lines
1.2 KiB
XML
32 lines
1.2 KiB
XML
<UserControl x:Class="WPF_4_Custom_User_Controls.View.UserController.MenuBar"
|
|
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"
|
|
mc:Ignorable="d"
|
|
Height="70" Width="800">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="30" />
|
|
<RowDefinition Height="40" />
|
|
</Grid.RowDefinitions>
|
|
|
|
<Menu Grid.Row="0">
|
|
<MenuItem Header="File" FontSize="16">
|
|
<MenuItem Header="退出" />
|
|
</MenuItem>
|
|
|
|
<MenuItem Header="Edit" FontSize="16" />
|
|
</Menu>
|
|
|
|
<Grid Grid.Row="1">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto" />
|
|
<ColumnDefinition Width="Auto" />
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Button Grid.Column="0" Width="50" Margin="5" Content="添加" />
|
|
<TextBox Grid.Column="1" Width="200" Margin="5" />
|
|
</Grid>
|
|
</Grid>
|
|
</UserControl> |