OptionWindows.xaml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <Window
  2. x:Class="SHJX.Service.CustomControl.OptionWindows"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:SHJX.Service.CustomControl"
  7. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  8. xmlns:pu="clr-namespace:Panuon.UI.Silver;assembly=Panuon.UI.Silver"
  9. Title="选择导出批次"
  10. Width="200"
  11. Height="150"
  12. ResizeMode="NoResize"
  13. WindowStartupLocation="CenterScreen"
  14. WindowStyle="ToolWindow"
  15. mc:Ignorable="d">
  16. <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
  17. <ComboBox
  18. Name="cmb_wave"
  19. Width="150"
  20. Height="30"
  21. pu:ComboBoxHelper.CornerRadius="7"
  22. pu:ComboBoxHelper.HoverBackground="#1E66CCCC"
  23. pu:ComboBoxHelper.SelectedBackground="#3299CCCC"
  24. BorderBrush="#99CCCC"
  25. Cursor="Hand"
  26. Foreground="#99CCCC"
  27. ItemsSource="{Binding Wavekeys}"
  28. SelectedIndex="0" />
  29. <Button
  30. Width="80"
  31. Height="30"
  32. Margin="0,20,0,0"
  33. HorizontalAlignment="Right"
  34. pu:ButtonHelper.CornerRadius="10"
  35. pu:ButtonHelper.HoverBrush="#66CCCC"
  36. Background="#99CCCC"
  37. Click="Button_Click"
  38. Content="确定"
  39. Cursor="Hand"
  40. FontFamily="{StaticResource FontAwesome}" />
  41. </StackPanel>
  42. </Window>