-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRefreshButtonView.xaml
53 lines (53 loc) · 1.44 KB
/
RefreshButtonView.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
<?xml version="1.0" encoding="utf-8"?>
<UserControl
x:Class="SpringsUI.RefreshButtonView" 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:SpringsUI"
mc:Ignorable="d"
d:DesignHeight="120"
d:DesignWidth="200"
Background="#FF353535">
<Grid>
<Button
Grid.Column="0"
Grid.Row="0"
HorizontalAlignment="Center"
VerticalAlignment="Top"
Margin="0,8,0,0"
Height="50"
FontFamily="Calibri"
FontSize="25"
Content="Refresh"
Command="{Binding UpdateRefreshButton}"
x:Name="button1"
Width="175"
Background="#FF404040"
Foreground="#FFF1F2F2" />
<CheckBox
FontFamily="Calibri"
Content="Also Re-Run Graph"
FontSize="16"
IsChecked="{Binding run}"
x:Name="checkbox1"
Foreground="Black"
Height="20"
Width="178"
Grid.Column="0"
Grid.Row="0"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Margin="12,66,0,0" />
<CheckBox
FontFamily="Calibri"
FontSize="16"
Content="Force Re-Run Everything"
IsChecked="{Binding force}"
IsEnabled="{Binding run}"
x:Name="checkbox2"
Foreground="Black"
Height="20"
Grid.Column="0"
Grid.Row="0"
HorizontalAlignment="Stretch"
VerticalAlignment="Top"
Margin="12,92,13,0" />
</Grid>
</UserControl>