| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- <Window
- x:Class="SHJX.Service.View.View.SettingForm"
- 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:pu="clr-namespace:Panuon.UI.Silver;assembly=Panuon.UI.Silver"
- Title="设置"
- Width="820"
- Height="800"
- AllowsTransparency="True"
- Background="Transparent"
- ResizeMode="NoResize"
- WindowStartupLocation="CenterScreen"
- WindowStyle="None"
- mc:Ignorable="d">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="0.7*" />
- <RowDefinition Height="0.8*" />
- <RowDefinition Height="12*" />
- <RowDefinition Height="1*" />
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="1*" />
- </Grid.ColumnDefinitions>
- <Border Grid.Row="0"
- Grid.RowSpan="4"
- BorderThickness="3"
- Margin="5"
- Background="White"
- BorderBrush="#99CCCC">
- <Border.Effect>
- <DropShadowEffect Color="#CCCCCC" BlurRadius="10" ShadowDepth="0" Opacity="0.8">
- </DropShadowEffect>
- </Border.Effect>
- </Border>
- <Border Grid.Row="0" Background="#99CCCC" Margin="5" />
- <Grid
- x:Name="SettingTag"
- Grid.Row="0"
- MouseLeftButtonDown="SettingTag_MouseLeftButtonDown">
- <TextBlock
- Margin="10,0,0,0"
- VerticalAlignment="Center"
- FontSize="13"
- FontWeight="Black"
- Foreground="White"
- Text="设置" />
- <Button
- x:Name="btn_setting_close"
- Width="25"
- Height="25"
- Margin="0,0,10,0"
- Padding="0"
- HorizontalAlignment="Right"
- pu:ButtonHelper.ButtonStyle="Hollow"
- pu:ButtonHelper.ClickStyle="Sink"
- pu:ButtonHelper.CornerRadius="20"
- pu:ButtonHelper.HoverBrush="#66CCCC"
- Background="Transparent"
- BorderBrush="Transparent"
- Click="btn_setting_close_Click"
- Cursor="Hand">
- <Image
- Width="25"
- Height="25"
- Source="/SHJX.Service.Resource;component/Resources/关闭.png" />
- </Button>
- </Grid>
- <!--<ListBox Grid.Row="0" Grid.Column="0" BorderThickness="1,1,1,0" BorderBrush="#666666" />-->
- <TabControl
- Cursor="Hand"
- x:Name="Menu"
- Grid.Row="1"
- Margin="20,5"
- HorizontalAlignment="Stretch"
- VerticalAlignment="Bottom"
- pu:TabControlHelper.SelectedForeground="#66CCCC"
- BorderBrush="#99CCCC"
- Foreground="#99CCCC"
- SelectionChanged="Menu_SelectionChanged" />
- <ScrollViewer
- Grid.Row="2"
- HorizontalAlignment="Stretch"
- BorderBrush="#666666"
- BorderThickness="0"
- HorizontalScrollBarVisibility="Disabled"
- VerticalScrollBarVisibility="Auto">
- <StackPanel
- x:Name="StackPanelMain"
- Grid.Row="1"
- Grid.Column="0"
- HorizontalAlignment="Stretch" />
- </ScrollViewer>
- <Border
- Grid.Row="3"
- Grid.Column="0"
- BorderBrush="#99CCCC"
- BorderThickness="0,1,0,0">
- <Border.Effect>
- <DropShadowEffect
- BlurRadius="3"
- Opacity="0.3"
- ShadowDepth="0.5"
- Color="#99CCCC" />
- </Border.Effect>
- <Grid>
- <StackPanel HorizontalAlignment="Right" Orientation="Horizontal">
- <Button
- Width="80"
- Height="30"
- Margin="5,0"
- pu:ButtonHelper.CornerRadius="10"
- pu:ButtonHelper.HoverBrush="#66CCCC"
- Background="#99CCCC"
- Command="{Binding UpdateSettingInfoCommand}"
- Content="确定"
- Cursor="Hand"
- FontFamily="{StaticResource FontAwesome}"
- Foreground="White" />
- <Button
- x:Name="Cancel"
- Width="80"
- Height="30"
- Margin="5,0,20,0"
- pu:ButtonHelper.CornerRadius="10"
- pu:ButtonHelper.HoverBrush="#66CCCC"
- Background="#99CCCC"
- Click="Cancel_Click"
- Content="取消"
- Cursor="Hand"
- FontFamily="{StaticResource FontAwesome}"
- Foreground="White" />
- </StackPanel>
- </Grid>
- </Border>
- </Grid>
- </Window>
|