-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQuickSet.xaml
More file actions
161 lines (161 loc) · 4.3 KB
/
QuickSet.xaml
File metadata and controls
161 lines (161 loc) · 4.3 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<Page
x:Class="MakuTweakerNew.QuickSet" 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:local="clr-namespace:MakuTweakerNew" xmlns:controls="clr-namespace:MicaWPF.Controls;assembly=MicaWPF" xmlns:ui="http://schemas.modernwpf.com/2019"
Title="Quick Windows Setup">
<Grid>
<ScrollViewer
VerticalScrollBarVisibility="Auto"
HorizontalScrollBarVisibility="Auto">
<Grid>
<TextBlock
Name="label"
HorizontalAlignment="Left"
Margin="24,11,0,0"
TextWrapping="Wrap"
Text="Quick Windows Setup"
VerticalAlignment="Top"
FontSize="32"
FontFamily="Segoe UI Semibold" />
<TextBlock
Name="info"
HorizontalAlignment="Left"
Margin="24,59,0,0"
TextWrapping="Wrap"
Text="Use Checkboxes To Select The Settings To Be Applied. рррррррррр"
VerticalAlignment="Top"
FontSize="24"
FontFamily="Segoe UI Semilight"
Width="585" />
<ui:ToggleSwitch
Name="t1"
Header="Show Hidden Files and Folders"
Margin="24,134,0,0"
VerticalAlignment="Top"
FontSize="16"
IsOn="True" />
<ui:ToggleSwitch
Name="t2"
Header="Show File Extensions"
Margin="24,194,0,0"
VerticalAlignment="Top"
FontSize="16"
IsOn="True" />
<ui:ToggleSwitch
Name="t3"
Header="Open 'This PC' Page In Explorer Instead Of 'Home'"
Margin="24,254,0,0"
VerticalAlignment="Top"
FontSize="16"
IsOn="True" />
<ui:ToggleSwitch
Name="t4"
Header="Fix Disk Duplication In Explorer"
Margin="24,674,0,0"
VerticalAlignment="Top"
FontSize="16"
IsOn="True" />
<ui:ToggleSwitch
Name="t5"
Header="Show 'This PC' On Desktop"
Margin="24,374,0,0"
VerticalAlignment="Top"
FontSize="16"
IsOn="True" />
<ui:ToggleSwitch
Name="t6"
Header="Remove The '-Shortcut' Ending From New Shortcuts"
Margin="24,434,0,0"
VerticalAlignment="Top"
FontSize="16"
IsOn="True" />
<ui:ToggleSwitch
Name="t7"
Header="Hide The Task View And Widgets Button"
Margin="24,494,0,0"
VerticalAlignment="Top"
FontSize="16"
IsOn="True" />
<ui:ToggleSwitch
Name="t8"
Header="Remove Ads In Start Menu And Taskbar Search"
Margin="24,554,0,0"
VerticalAlignment="Top"
FontSize="16"
IsOn="True" />
<ui:ToggleSwitch
Name="t9"
Header="Disable Online Search In Start Via Bing"
Margin="24,614,0,0"
VerticalAlignment="Top"
FontSize="16"
IsOn="True" />
<ui:ToggleSwitch
Name="t10"
Header="Pause Windows Update Service"
Margin="24,314,0,0"
VerticalAlignment="Top"
FontSize="16"
IsOn="True" />
<ui:ToggleSwitch
Name="t12"
Header="Disable Sticky Keys"
Margin="24,794,0,0"
VerticalAlignment="Top"
FontSize="16"
IsOn="True" />
<ui:ToggleSwitch
Name="t13"
Header="Enable Clipboard"
Margin="24,854,0,0"
VerticalAlignment="Top"
FontSize="16"
IsOn="True" />
<ui:ToggleSwitch
Name="t14"
Header="Remove Context Menu Delay"
Margin="24,914,0,0"
VerticalAlignment="Top"
FontSize="16"
IsOn="True" />
<ui:ToggleSwitch
Name="t15"
Header="Set Chkdsk Timeout to 1 Minute"
Margin="24,974,0,0"
VerticalAlignment="Top"
FontSize="16"
IsOn="True" />
<ui:ToggleSwitch
Name="t16"
Header="Install DirectPlay"
Margin="24,1034,0,0"
VerticalAlignment="Top"
FontSize="16"
IsOn="True" />
<ui:ToggleSwitch
Name="t17"
Header="Install .NET Framework 2.0, 3.0, 3.5"
Margin="24,1094,0,0"
VerticalAlignment="Top"
FontSize="16"
IsOn="True"
Height="59" />
<ui:ToggleSwitch
Name="t19"
Header="Disable Automatic BitLocker Encryption"
Margin="24,734,0,0"
VerticalAlignment="Top"
FontSize="16"
IsOn="True" />
</Grid>
</ScrollViewer>
<controls:Button
Name="start"
Content="Start Quick Setup"
HorizontalAlignment="Right"
VerticalAlignment="Bottom"
Panel.ZIndex="1"
Width="200"
Height="33"
Margin="0,0,25,15"
Click="start_Click" />
</Grid>
</Page>