19 lines
1.2 KiB
Plaintext
19 lines
1.2 KiB
Plaintext
|
|
<Window x:Class="MetroGauges.Database.Forms.frmAddGroup"
|
||
|
|
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:local="clr-namespace:MetroGauges.Database.Forms"
|
||
|
|
mc:Ignorable="d"
|
||
|
|
Title="添加分类" Height="156.437" Width="305.58" WindowStartupLocation="CenterScreen" ShowInTaskbar="False" WindowStyle="None">
|
||
|
|
<Grid>
|
||
|
|
|
||
|
|
|
||
|
|
<Button x:Name="btAdd" Content="确定" HorizontalAlignment="Left" Margin="96,88,0,0" VerticalAlignment="Top" Width="75" Click="btAdd_Click"/>
|
||
|
|
<TextBlock HorizontalAlignment="Left" Margin="10,50,0,0" TextWrapping="Wrap" Text="分类名称:" VerticalAlignment="Top"/>
|
||
|
|
<TextBox x:Name="txtGroup" HorizontalAlignment="Left" Height="36" Margin="66,37,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Width="194"/>
|
||
|
|
<Button x:Name="btcancel" Content="取消" HorizontalAlignment="Left" Margin="184,88,0,0" VerticalAlignment="Top" Width="75" Click="btcancel_Click"/>
|
||
|
|
|
||
|
|
</Grid>
|
||
|
|
</Window>
|