AskDate.xaml 1.3 KB

12345678910111213141516171819202122232425
  1. <Window x:Class="DeviceCenter.AskDate"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:DeviceCenter"
  7. mc:Ignorable="d"
  8. Title="时间" Height="150" Width="300" ResizeMode="NoResize" WindowStartupLocation="CenterScreen">
  9. <Grid>
  10. <StackPanel Orientation="Vertical" HorizontalAlignment="Center">
  11. <StackPanel Orientation="Horizontal" Margin="0 10 0 0">
  12. <Label Content="开始时间"></Label>
  13. <TextBox Width="200" Name="tb_start" VerticalContentAlignment="Center"></TextBox>
  14. </StackPanel>
  15. <StackPanel Orientation="Horizontal" Margin="0 10 0 0">
  16. <Label Content="结束时间"></Label>
  17. <TextBox Width="200" Name="tb_end" VerticalContentAlignment="Center"></TextBox>
  18. </StackPanel>
  19. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" Margin="0 10 0 0">
  20. <Button Content="确定" Padding="10 5" Click="Button_Click"/>
  21. </StackPanel>
  22. </StackPanel>
  23. </Grid>
  24. </Window>