-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainWindow.xaml
57 lines (57 loc) · 2.97 KB
/
MainWindow.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
<Window x:Class="CodingSeb.Converters.Examples.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:CodingSeb.Converters.Examples"
mc:Ignorable="d"
WindowStartupLocation="CenterScreen"
Title="PTM.WPFConverters Tests Window" Height="900" Width="827">
<Window.Resources>
<Thickness x:Key="PanelMargin"
Left="5" Right="5"
Top="10" Bottom="10" />
<Thickness x:Key="PanelBorderThickness"
Left="0" Right="0"
Top="0" Bottom="1" />
<SolidColorBrush x:Key="PanelBorderBrush" Color="LightGray" />
</Window.Resources>
<DockPanel>
<ScrollViewer VerticalScrollBarVisibility="Auto" HorizontalScrollBarVisibility="Disabled">
<StackPanel Margin="5">
<local:CustomBoolToVisibilityPanel
Margin="{StaticResource PanelMargin}"
BorderBrush="{StaticResource PanelBorderBrush}"
BorderThickness="{StaticResource PanelBorderThickness}"/>
<local:ReverseBoolPanel
Margin="{StaticResource PanelMargin}"
BorderBrush="{StaticResource PanelBorderBrush}"
BorderThickness="{StaticResource PanelBorderThickness}"/>
<local:EmptyStringToDefaultValuePanel
Margin="{StaticResource PanelMargin}"
BorderBrush="{StaticResource PanelBorderBrush}"
BorderThickness="{StaticResource PanelBorderThickness}"/>
<local:ColorToSolidColorBrushPanel
Margin="{StaticResource PanelMargin}"
BorderBrush="{StaticResource PanelBorderBrush}"
BorderThickness="{StaticResource PanelBorderThickness}"/>
<local:ChainingConverterPanel
Margin="{StaticResource PanelMargin}"
BorderBrush="{StaticResource PanelBorderBrush}"
BorderThickness="{StaticResource PanelBorderThickness}"/>
<local:StringCasingPanel
Margin="{StaticResource PanelMargin}" />
<local:IntToBoolPanel
Margin="{StaticResource PanelMargin}" />
<local:ExclusiveBoolToEnumOrEquatablePanel
Margin="{StaticResource PanelMargin}" />
<local:ExpressionEvalPanel
Margin="{StaticResource PanelMargin}"/>
<local:MappingConverterPanel
Margin="{StaticResource PanelMargin}" />
<local:TypeCheckingPanel
Margin="{StaticResource PanelMargin}" />
</StackPanel>
</ScrollViewer>
</DockPanel>
</Window>