<Window x:Class="WpfApplication1.Window1"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Height="874" Width="905"
	Title="Page_Custom" Loaded="Page_Loaded">
    <Window.Resources>
        <ResourceDictionary>
            <ResourceDictionary.MergedDictionaries>
                <ResourceDictionary Source="pack://application:,,,/FLY.ControlLibrary;component/Themes/Dictionary_MyStyle.xaml"/>
                <ResourceDictionary Source="pack://application:,,,/FLY.ControlLibrary;component/Themes/MaterialDesignIcons.xaml"/>
            </ResourceDictionary.MergedDictionaries>
            <Style TargetType="{x:Type ToggleButton}" x:Key="ToggleButtonStyle_language" >
                <Setter Property="HorizontalContentAlignment" Value="Center"/>
                <Setter Property="VerticalContentAlignment" Value="Center"/>
                <Setter Property="Padding" Value="1"/>
                <Setter Property="Template">
                    <Setter.Value>
                        <ControlTemplate TargetType="{x:Type ToggleButton}">
                            <Canvas Height="45" Width="106">
                                <Path x:Name="Path_Background" Data="F1M1,1C1,1 105,1 105,1 105,1 105,44 105,44 105,44 1,44 1,44 1,44 1,1 1,1z" 
								Fill="#FF008BE5" Height="45" Width="106"/>
                                <Path x:Name="Path_block" Data="F1M1,1C1,1 23,1 23,1 23,1 23,35 23,35 23,35 1,35 1,35 1,35 1,1 1,1z" 
								Fill="#FFFFFFFF" Height="36" Canvas.Left="77" Canvas.Top="5" Width="24"/>
                                <TextBlock x:Name="TextBlock_No" Text="English"  Foreground ="White" Canvas.Left="2"  Canvas.Top="7" Style="{StaticResource ResourceKey=TextBlockStyle_FieldContent}" FontSize="20" />
                            </Canvas>
                            <ControlTemplate.Triggers>
                                <Trigger Property="IsChecked" Value="False">
                                    <Setter TargetName="TextBlock_No" Property="Text" Value="中文"/>
                                    <Setter TargetName="TextBlock_No" Property="Canvas.Left" Value="51"/>
                                    <Setter TargetName="Path_block" Property="Canvas.Left" Value="4"/>
                                    <Setter TargetName="Path_Background" Property="Fill" Value="#FF3B3B3B"/>
                                </Trigger>
                            </ControlTemplate.Triggers>
                        </ControlTemplate>
                    </Setter.Value>
                </Setter>
            </Style>
        </ResourceDictionary>
    </Window.Resources>
    <Grid >
        <Grid.RowDefinitions>
            <RowDefinition Height="auto" />
            <RowDefinition Height="496*" />
            <RowDefinition Height="auto" />
        </Grid.RowDefinitions>
        <StackPanel Orientation="Horizontal" Background="{StaticResource Background_Title}" Grid.ColumnSpan="3" >
            <Button Style="{StaticResource ButtonStyle_back2}" Command="BrowseBack"/>
            <TextBlock Margin="160,0,0,0" FontWeight="Bold" FontFamily="YouYuan" TextAlignment="Left" VerticalAlignment="Center">
                <Run Foreground="White" FontSize="60"  Text="客户端设置"/>
            </TextBlock>
        </StackPanel>
        <ScrollViewer CanContentScroll="True" PanningMode="Both" Grid.Row="1" >
            <StackPanel Orientation="Vertical" >
                <StackPanel Orientation="Horizontal" >
                    <Border Background="{StaticResource Color_theme_activity}" Width="150" Margin="0,5,5,5">
                        <TextBlock Style="{StaticResource TextBlockStyle_ItemHeader}" Text="服务器" />
                    </Border>
                    <StackPanel Orientation="Vertical">
                        <StackPanel Orientation="Vertical" Margin="5">
                            <TextBlock Style="{StaticResource ResourceKey=TextBlockStyle_FieldHeaderEditable}" Text="服务器地址" />
                            <StackPanel Orientation="Horizontal">
                                <TextBox Style="{StaticResource ResourceKey=TextBoxStyle_FieldContent}" Text="{Binding ServerIPEP}" Tag="Full" />
                            </StackPanel>
                        </StackPanel>
                    </StackPanel>
                </StackPanel>
                <StackPanel Orientation="Horizontal" >
                    <Border Width="150" Background="{StaticResource Color_theme_activity}" Margin="0,5,5,5">
                        <TextBlock Style="{StaticResource TextBlockStyle_ItemHeader}" Text="配置" />
                    </Border>
                    <StackPanel Orientation="Vertical">
                        <StackPanel Orientation="Horizontal"></StackPanel>
                        <StackPanel Orientation="Horizontal">
                            <StackPanel Orientation="Vertical" Margin="5">
                                <TextBlock Style="{StaticResource ResourceKey=TextBlockStyle_FieldHeaderEditable}" Text="虚拟键盘" />
                                <ToggleButton Style="{StaticResource ToggleButtonStyle1}" HorizontalAlignment="Left" IsChecked="{Binding HaveOSK}" />
                            </StackPanel>
                            <StackPanel Orientation="Vertical" Margin="5">
                                <TextBlock Style="{StaticResource ResourceKey=TextBlockStyle_FieldHeaderEditable}" Text="鼠标触发" />
                                <ToggleButton Style="{StaticResource ToggleButtonStyle1}" HorizontalAlignment="Left" IsChecked="{Binding HaveOSK_mouse}" />
                            </StackPanel>
                        </StackPanel>
                        <StackPanel Orientation="Horizontal">
                            <Button Content="功能" Style="{StaticResource ResourceKey=ButtonStyle2}" Click="button_opt_Click" />

                        </StackPanel>
                    </StackPanel>
                </StackPanel>
                <Grid>
                    <Grid.ColumnDefinitions>
                        <ColumnDefinition Width="auto"/>
                        <ColumnDefinition/>
                    </Grid.ColumnDefinitions>

                    <Border Width="150" Background="{StaticResource Color_theme_activity}" Margin="0,5,5,5">
                        <TextBlock Style="{StaticResource TextBlockStyle_ItemHeader}" Text="报警提示" />
                    </Border>
                    <StackPanel Grid.Column="1" Orientation="Vertical">
                        <StackPanel Orientation="Horizontal">
                            <StackPanel Orientation="Vertical" Margin="5">
                                <TextBlock Style="{StaticResource ResourceKey=TextBlockStyle_FieldHeaderEditable}" Text="在客户端显示及使用音响报警" />
                                <ToggleButton Style="{StaticResource ToggleButtonStyle1}" HorizontalAlignment="Left" IsChecked="False" />
                            </StackPanel>
                            <StackPanel Orientation="Vertical" Margin="5">
                                <TextBlock Style="{StaticResource ResourceKey=TextBlockStyle_FieldHeaderEditable}" Text="提示持续时间" />
                                <StackPanel Orientation="Horizontal">
                                    <TextBox Style="{StaticResource ResourceKey=TextBoxStyle_FieldContent}" Text="{Binding TipTime}" MaxWidth="120" HorizontalAlignment="Left" AcceptsReturn="False" />
                                    <TextBlock Style="{StaticResource ResourceKey=TextBlockStyle_FieldContent_mm}" >
                                        <Run Text="秒" />
                                    </TextBlock>
                                </StackPanel>
                            </StackPanel>
                            <Button Style="{StaticResource ResourceKey=ButtonStyle_empty}" Click="button_play_Click" Background="White" VerticalAlignment="Bottom" Margin="5">

                                <Path Data="{StaticResource Geometry_play-box-outline}" Fill="{StaticResource Color_theme_activity}" Height="36" Width="36" Stretch="Fill" SnapsToDevicePixels="True" />

                            </Button>
                        </StackPanel>

                        <Grid>
                            <Grid.ColumnDefinitions>
                                <ColumnDefinition Width="auto"/>
                                <ColumnDefinition/>
                            </Grid.ColumnDefinitions>

                            <StackPanel Grid.Column="1" Orientation="Vertical" Margin="5">
                                <StackPanel Orientation="Horizontal">
                                    <TextBlock Style="{StaticResource ResourceKey=TextBlockStyle_FieldHeader}" Text="音乐文件路径" VerticalAlignment="Bottom"/>
                                    <Button Style="{StaticResource ResourceKey=ButtonStyle_empty}" Click="button_open_Click" Background="White" VerticalAlignment="Bottom" Margin="5">
                                        <Path Data="{StaticResource Geometry_plus-box-outline}" Fill="{StaticResource Color_theme_activity}" Height="36" Width="36" Stretch="Fill" SnapsToDevicePixels="True" />
                                    </Button>
                                </StackPanel>

                                <TextBlock Style="{StaticResource ResourceKey=TextBlockStyle_FieldContent}" Text="{Binding WarningTipPath}" HorizontalAlignment="Left" TextWrapping="Wrap" />

                            </StackPanel>
                        </Grid>



                    </StackPanel>

                </Grid>
                <StackPanel Orientation="Horizontal" >
                    <Border Width="150" Background="{StaticResource Color_theme_activity}" Margin="0,5,5,5">
                        <TextBlock Style="{StaticResource TextBlockStyle_ItemHeader}" Text="调试" />
                    </Border>
                    <StackPanel Orientation="Vertical">
                        <StackPanel Orientation="Horizontal">
                            <Button Content="FileBus" Style="{StaticResource ResourceKey=ButtonStyle2}"  />
                            <Button Content="清空缓存" Style="{StaticResource ResourceKey=ButtonStyle2}" />
                            <Button Content="清空bulk" Style="{StaticResource ResourceKey=ButtonStyle2}" />
                        </StackPanel>

                    </StackPanel>
                </StackPanel>
            </StackPanel>
        </ScrollViewer>
        <StackPanel Orientation="Horizontal"  Grid.Row="2" FlowDirection="RightToLeft" Margin="0,10,0,10">
            <Button Content="应用" Style="{StaticResource ResourceKey=ButtonStyle2}" Click="button_apply_Click" />
        </StackPanel>
    </Grid>
</Window>