-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.xaml
executable file
·63 lines (63 loc) · 2.99 KB
/
App.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
56
57
58
59
60
61
62
63
<Application x:Class="MachPlotNamespace.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
StartupUri="Windows/MainWindow.xaml">
<Application.Resources>
<!-- MachPlot canvas line styles -->
<Style x:Key="horizontalLineStyle" TargetType="Line">
<Setter Property="StrokeThickness" Value="0.6" />
<Setter Property="StrokeDashArray" Value="2 5" />
<Setter Property="Stroke" Value="Black" />
</Style>
<Style x:Key="verticalLineStyle" TargetType="Line">
<Setter Property="StrokeThickness" Value="0.6" />
<Setter Property="StrokeDashArray" Value="2 5" />
<Setter Property="Stroke" Value="Black" />
</Style>
<Style x:Key="axisXLineStyle" TargetType="Line">
<Setter Property="StrokeThickness" Value="1" />
<Setter Property="Stroke" Value="Black" />
</Style>
<Style x:Key="axisYLineStyle" TargetType="Line">
<Setter Property="StrokeThickness" Value="1" />
<Setter Property="Stroke" Value="Black" />
</Style>
<!-- MachPlot Axis label styles -->
<Style x:Key="axisXLabelStyle" TargetType="Label">
<Setter Property="FontSize" Value="12" />
</Style>
<Style x:Key="axisY0LabelStyle" TargetType="Label">
<Setter Property="FontSize" Value="12" />
</Style>
<Style x:Key="axisY1LabelStyle" TargetType="Label">
<Setter Property="FontSize" Value="12" />
</Style>
<Style x:Key="axisY2LabelStyle" TargetType="Label">
<Setter Property="FontSize" Value="12" />
</Style>
<Style x:Key="axisY3LabelStyle" TargetType="Label">
<Setter Property="FontSize" Value="12" />
</Style>
<!-- MachPlot Axis description styles -->
<Style x:Key="axisXDescriptionStyle" TargetType="TextBlock">
<Setter Property="FontSize" Value="12" />
<Setter Property="FontWeight" Value="Bold" />
</Style>
<Style x:Key="axisY0DescriptionStyle" TargetType="TextBlock">
<Setter Property="FontSize" Value="12" />
<Setter Property="FontWeight" Value="Bold" />
</Style>
<Style x:Key="axisY1DescriptionStyle" TargetType="TextBlock">
<Setter Property="FontSize" Value="12" />
<Setter Property="FontWeight" Value="Bold" />
</Style>
<Style x:Key="axisY2DescriptionStyle" TargetType="TextBlock">
<Setter Property="FontSize" Value="12" />
<Setter Property="FontWeight" Value="Bold" />
</Style>
<Style x:Key="axisY3DescriptionStyle" TargetType="TextBlock">
<Setter Property="FontSize" Value="12" />
<Setter Property="FontWeight" Value="Bold" />
</Style>
</Application.Resources>
</Application>