You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
1.3 KiB
XML

<Window x:Class="XGLFinishPro.Views.OrderWorkIdSelect"
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:XGLFinishPro.Views"
mc:Ignorable="d"
xmlns:hc="https://handyorg.github.io/handycontrol"
WindowStartupLocation="CenterScreen"
WindowStyle="None"
Height="300" Width="600">
<StackPanel VerticalAlignment="Center">
<DatePicker x:Name="StartDatePicker" SelectedDateChanged="StartDatePicker_SelectedDateChanged" Margin="10,10,10,10" Width="200" Height="30" VerticalAlignment="Center" HorizontalAlignment="Center" />
<ComboBox x:Name="WorkIdComboBox" DisplayMemberPath="WorkName" Margin="10,10,10,10" Width="560" Height="30" VerticalAlignment="Center" HorizontalAlignment="Center" />
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center" Margin="10,50,10,10">
<Button Content="确认" Background="LightBlue" Width="100" Click="Button_Click"/>
<Button Content="取消" Background="LightBlue" Margin="100,0,0,0" Width="100" Click="Button_Click_1"/>
</StackPanel>
</StackPanel>
</Window>