forked from yaobus/Clipbrd-Plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclipsetting.xaml
55 lines (44 loc) · 3.27 KB
/
clipsetting.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<UserControl x:Class="Clipbrd_Plus.Clipsetting"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:md="http://materialdesigninxaml.net/winfx/xaml/themes"
xmlns:local="clr-namespace:Clipbrd_Plus"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800">
<md:TransitioningContent x:Name="TransitioningContentMenu" OpeningEffect="{md:TransitionEffect SlideInFromLeft, Duration=0:0:0.3}" Grid.ColumnSpan="2" Grid.RowSpan="3">
<Grid Background="White" >
<Grid Margin="0, 0" Height="40" VerticalAlignment="Top">
<StackPanel HorizontalAlignment="Left">
<TextBlock Text="{DynamicResource SetClipSetting}" Margin="10" FontSize="20" Foreground="#FF555555"></TextBlock>
</StackPanel>
</Grid>
<Grid Margin="0,40" >
<Grid.RowDefinitions>
<RowDefinition Height="45"/>
<RowDefinition Height="45"/>
<RowDefinition Height="45"/>
<RowDefinition Height="45"/>
<RowDefinition Height="45"/>
<RowDefinition Height="45"/>
</Grid.RowDefinitions>
<WrapPanel HorizontalAlignment="Left" Grid.Row="0" VerticalAlignment="Center">
<CheckBox x:Name="CbRecText" Margin="10" Height="24" Width=" 24" Background="#34b4c8" BorderBrush="#34b4c8" Click="CbRecText_OnClick"></CheckBox>
<md:PackIcon Kind="Text" Margin="0" Height="24" Width="24" Foreground="#34b4c8" VerticalAlignment="Center"></md:PackIcon>
<TextBlock Text="{DynamicResource ClipText}" Margin="0,10" FontSize="16" Foreground="#34b4c8" VerticalAlignment="Center"></TextBlock>
</WrapPanel>
<WrapPanel HorizontalAlignment="Left" Grid.Row="1" VerticalAlignment="Center" >
<CheckBox x:Name="CbRecImg" Margin="10" Height="24" Width=" 24" BorderBrush="#34b4c8" Background="#34b4c8" Click="CbRecImg_OnClick"></CheckBox>
<md:PackIcon Kind="Image" Margin="0" Height="24" Width="24" Foreground="#34b4c8" VerticalAlignment="Center"></md:PackIcon>
<TextBlock Text="{DynamicResource ClipBitmap}" Margin="0,10" FontSize="16" Foreground="#34b4c8" VerticalAlignment="Center"></TextBlock>
</WrapPanel>
<WrapPanel HorizontalAlignment="Left" Grid.Row="2" VerticalAlignment="Center" >
<CheckBox x:Name="CbRecFile" Margin="10" Height="24" Width=" 24" Background="#34b4c8" BorderBrush="#34b4c8" Click="CbRecFile_OnClick"></CheckBox>
<md:PackIcon Kind="file" Margin="0" Height="24" Width="24" Foreground="#34b4c8" VerticalAlignment="Center"></md:PackIcon>
<TextBlock Text="{DynamicResource ClipFile}" Margin="0,10" FontSize="16" Foreground="#34b4c8" VerticalAlignment="Center"></TextBlock>
</WrapPanel>
</Grid>
</Grid>
</md:TransitioningContent>
</UserControl>