| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- <Window
- x:Class="SHJX.Service.Library.Views.WaveShowBox"
- 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:prism="http://prismlibrary.com/"
- xmlns:pu="clr-namespace:Panuon.UI.Silver;assembly=Panuon.UI.Silver"
- xmlns:vc="clr-namespace:SHJX.Service.Common.ElementHelper;assembly=SHJX.Service.Common"
- Title="WaveShowBox"
- Width="180"
- Height="140"
- prism:ViewModelLocator.AutoWireViewModel="True"
- vc:DialogCloseHelper.DialogResult="{Binding DialogResult}"
- AllowsTransparency="True"
- Background="Transparent"
- ResizeMode="NoResize"
- WindowStartupLocation="CenterScreen"
- WindowStyle="None"
- mc:Ignorable="d">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="3*" />
- <RowDefinition Height="10*" />
- </Grid.RowDefinitions>
- <Border
- Grid.Row="0"
- Grid.RowSpan="2"
- Margin="3"
- Background="White"
- BorderBrush="#6452A4"
- BorderThickness="3"
- CornerRadius="5">
- <Border.Effect>
- <DropShadowEffect
- BlurRadius="10"
- Opacity="0.8"
- ShadowDepth="0"
- Color="#929FDE" />
- </Border.Effect>
- </Border>
- <Border
- Grid.Row="0"
- Margin="5"
- Background="#6452A4"
- CornerRadius="5,5,0,0" />
- <Grid
- Grid.Row="0"
- Background="Transparent"
- MouseLeftButtonDown="Grid_MouseLeftButtonDown">
- <TextBlock
- Margin="10,0,0,0"
- HorizontalAlignment="Left"
- VerticalAlignment="Center"
- FontFamily="幼圆"
- FontSize="10"
- Foreground="White"
- Text="导出选择" />
- <Button
- Name="btn_wave_close"
- Width="20"
- Height="20"
- Margin="0,0,10,0"
- HorizontalAlignment="Right"
- VerticalAlignment="Center"
- pu:ButtonHelper.ClickStyle="Sink"
- pu:ButtonHelper.CornerRadius="15"
- pu:ButtonHelper.HoverBrush="#929FDE"
- Background="Transparent"
- Click="btn_wave_close_Click"
- Cursor="Hand">
- <Image
- Width="15"
- Height="15"
- Source="/SHJX.Service.Resource;component/Assets/Photos/关闭.png" />
- </Button>
- </Grid>
- <UniformGrid Grid.Row="1" Rows="2">
- <ComboBox
- Name="cmb_wave"
- Width="150"
- Height="30"
- pu:ComboBoxHelper.CornerRadius="7"
- pu:ComboBoxHelper.HoverBackground="#1E003366"
- pu:ComboBoxHelper.SelectedBackground="#32006699"
- BorderBrush="#6452A4"
- Cursor="Hand"
- Foreground="#6452A4"
- ItemsSource="{Binding Wavekeys}"
- SelectedIndex="0"
- SelectedItem="{Binding WaveKeyItem}" />
- <Button
- Width="80"
- Height="30"
- Margin="0,0,10,0"
- HorizontalAlignment="Right"
- pu:ButtonHelper.CornerRadius="10"
- pu:ButtonHelper.HoverBrush="#929FDE"
- Background="#6452A4"
- Command="{Binding WaveKeyCommand}"
- Content="确定"
- Cursor="Hand" />
- </UniformGrid>
- </Grid>
- </Window>
|