| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <Window
- x:Class="SHJX.Service.CustomControl.OptionWindows"
- 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:local="clr-namespace:SHJX.Service.CustomControl"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:pu="clr-namespace:Panuon.UI.Silver;assembly=Panuon.UI.Silver"
- Title="选择导出批次"
- Width="200"
- Height="150"
- ResizeMode="NoResize"
- WindowStartupLocation="CenterScreen"
- WindowStyle="ToolWindow"
- mc:Ignorable="d">
- <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
- <ComboBox
- Name="cmb_wave"
- Width="150"
- Height="30"
- pu:ComboBoxHelper.CornerRadius="7"
- pu:ComboBoxHelper.HoverBackground="#1E66CCCC"
- pu:ComboBoxHelper.SelectedBackground="#3299CCCC"
- BorderBrush="#99CCCC"
- Cursor="Hand"
- Foreground="#99CCCC"
- ItemsSource="{Binding Wavekeys}"
- SelectedIndex="0" />
- <Button
- Width="80"
- Height="30"
- Margin="0,20,0,0"
- HorizontalAlignment="Right"
- pu:ButtonHelper.CornerRadius="10"
- pu:ButtonHelper.HoverBrush="#66CCCC"
- Background="#99CCCC"
- Click="Button_Click"
- Content="确定"
- Cursor="Hand"
- FontFamily="{StaticResource FontAwesome}" />
- </StackPanel>
- </Window>
|