-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainWindow.xaml
127 lines (124 loc) · 8.43 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
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
<Window x:Class="CodingSeb.Mvvm.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.Mvvm.Examples"
xmlns:sys="clr-namespace:System;assembly=mscorlib"
mc:Ignorable="d"
DataContext="{x:Static local:MainViewModel.Instance}"
Title="MainWindow" Height="450" Width="800">
<Window.Resources>
<sys:Boolean x:Key="TrueBool">True</sys:Boolean>
<sys:Boolean x:Key="FalseBool">False</sys:Boolean>
<sys:String x:Key="ResOnWindow">Resource in Window</sys:String>
<Style TargetType="TextBox">
<Setter Property="VerticalAlignment" Value="Center" />
</Style>
</Window.Resources>
<StackPanelEx Tag="GrandParent">
<StackPanelEx.Resources>
<sys:String x:Key="ResOnGrandParent">Resource in GrandParent</sys:String>
</StackPanelEx.Resources>
<AutoGrid Columns="Auto,*,Auto,Auto" >
<Label Content="#TextBox1" />
<TextBox x:Name="TextBox1" Grid.ColumnSpan="3" />
<Label Content="Value1" />
<TextBox Text="{Binding Value1, UpdateSourceTrigger=PropertyChanged}" />
<Button Content="Increment (Click to command)" Click="{XCommand IncrementValue1Command}"
VerticalAlignment="Center"/>
<Button Content="Decrement (Click to method)" Click="{XCommand DecrementValue1, TestCanExecute}"
VerticalAlignment="Center"/>
<Label Content="Value2" />
<TextBox Text="{Binding Value2, UpdateSourceTrigger=PropertyChanged}" />
<Button Content="Increment (Command to command)" Command="{XCommand IncrementValue2Command, TestCanExecute}"
VerticalAlignment="Center"/>
<Button Content="Decrement (Command to method)" Command="{XCommand DecrementValue2, TestCanExecute}"
VerticalAlignment="Center"/>
<Label Content="XCommandExpression" />
<TextBox x:Name="XCommandExpressionTextBox"
Text="MessageBox.Show("Hello")"/>
<Button Content="Click to Expression" Click="{XCommand ScriptEvaluate(#XCommandExpressionTextBox.Text), '#CheckBox1.IsChecked and TestCanExecute or #CheckBox5.IsChecked', CatchEvaluationExceptions=True}"
VerticalAlignment="Center"/>
<Button Content="Command to Expression" Command="{XCommand ScriptEvaluate(#XCommandExpressionTextBox.Text)}"
VerticalAlignment="Center"/>
<Label Content="ExpressionTextBox" />
<TextBox x:Name="ExpressionTextBox"
Text="$parent[StackPanelEx]"
Grid.ColumnSpan="3"/>
</AutoGrid>
<DockPanel>
<Button Content="XCommand on Method with args"
DockPanel.Dock="Right"
Click="{XCommand ClickTest,'', {Eval #TextBox1.Text}}" />
<TextBlock Text="{Eval '(Value1 + Value2).ToString()'}" />
</DockPanel>
<TextBlock Text="{Eval '((double)(#TextBox1.Text) + Value2).ToString()'}" />
<TextBlock Text="{Eval '((double)(#TextBox1.Text) + Value2).ToString()', FallbackValue='Failed'}" />
<TextBlock Text="{Eval 'ScriptEvaluate(#ExpressionTextBox.Text).ToString()', FallbackValue='Evaluation failed', AutoBinding=AutoBindingAtEachEvaluation}" />
<Grid Tag="InterGrid" Background="{Eval {Binding Text, ElementName=ExpressionTextBox}, FallbackValue=White}">
<StackPanelEx Tag="Parent" Orientation="Horizontal" MarginBetweenChildren="10" >
<StackPanelEx.Resources>
<sys:String x:Key="ResOnParent">Resource in Parent</sys:String>
</StackPanelEx.Resources>
<TextBlock Tag="Self" Text="{Eval $self.Tag}" />
<TextBlock Text="{Eval $parent.Tag}" />
<TextBlock Text="{Eval $parent[StackPanelEx].Tag}" />
<TextBlock Text="{Eval '$parent[StackPanelEx,1].Tag'}" />
<TextBlock Text="{Eval '$parent[StackPanelEx,2].Tag'}" />
<TextBlock Text="{Eval $parent[1].Tag}" />
<TextBlock Text="{Eval $parent[2].Tag}" />
<TextBlock Text="{Eval $parent[3].Tag}" />
<TextBlock Text="{Eval @ResOnParent}" />
<TextBlock Text="{Eval @ResOnWindow}" />
<TextBlock Text="{Eval {Binding Text, ElementName=ExpressionTextBox}, FallbackValue='Evaluation failed'}" />
</StackPanelEx>
</Grid>
<StackPanelEx Orientation="Horizontal" MarginBetweenChildren="10" >
<CheckBox Content="1" x:Name="CheckBox1" />
<CheckBox Content="2" x:Name="CheckBox2" />
<CheckBox Content="3" x:Name="CheckBox3" />
<CheckBox Content="4" x:Name="CheckBox4" />
<CheckBox Content="5" x:Name="CheckBox5" />
</StackPanelEx>
<CheckBox IsEnabled="False"
Content="(1 and not 2) or (3 and 4) or 5"
IsChecked="{XMultiBinding
{XMultiBinding {Binding IsChecked, ElementName=CheckBox1}, {Binding IsChecked, ElementName=CheckBox2, Converter={BoolReverseConverter}} , Converter={BoolMultiBindingAndConditionConverter}},
{XMultiBinding {Binding IsChecked, ElementName=CheckBox3}, {Binding IsChecked, ElementName=CheckBox4}, Converter={BoolMultiBindingAndConditionConverter}},
{Binding IsChecked, ElementName=CheckBox5},
Converter={BoolMultiBindingOrConditionConverter}}"/>
<CheckBox IsEnabled="False"
Content="(1 and (2 or not 3)) or (4 and 5)"
IsChecked="{XMultiBinding
{XMultiBinding {Binding IsChecked, ElementName=CheckBox1},
{XMultiBinding {Binding IsChecked, ElementName=CheckBox2}, {Binding IsChecked, ElementName=CheckBox3, Converter={BoolReverseConverter}}, Converter={BoolMultiBindingOrConditionConverter}} ,
Converter={BoolMultiBindingAndConditionConverter}},
{XMultiBinding {Binding IsChecked, ElementName=CheckBox4}, {Binding IsChecked, ElementName=CheckBox5}, Converter={BoolMultiBindingAndConditionConverter}},
Converter={BoolMultiBindingOrConditionConverter} }"/>
<CheckBox IsEnabled="False"
Content="1 and TrueBool in resources"
IsChecked="{XMultiBinding {Binding IsChecked, ElementName=CheckBox1}, {Binding Source={StaticResource TrueBool}, Mode=OneWay}, Converter={BoolMultiBindingAndConditionConverter}}"/>
<CheckBox IsEnabled="False"
Content="1 or FalseBool in resources"
IsChecked="{XMultiBinding {Binding IsChecked, ElementName=CheckBox1}, {Binding Source={StaticResource FalseBool}, Mode=OneWay}, Converter={BoolMultiBindingOrConditionConverter}}"/>
<CheckBox IsEnabled="False"
Content="1 and Eval"
IsChecked="{XMultiBinding {Binding IsChecked, ElementName=CheckBox1}, {Eval '2 > 1'}, Converter={BoolMultiBindingAndConditionConverter}}"/>
<TextBlock Text="{XMultiBinding {Binding IsChecked, ElementName=CheckBox1}, {Eval '2 > 1'}, Converter={BoolMultiBindingAndConditionConverter}}"
Visibility="{Eval {Binding Text, ElementName=ExpressionTextBox}, FallbackValue=Visible}"/>
<TextBlock Visibility="{Eval {Binding Text, ElementName=ExpressionTextBox}, FallbackValue=Visible}">
<TextBlock.Text>
<XMultiBinding Converter="{BoolMultiBindingAndConditionConverter}">
<XBindingProxy Binding="{Binding IsChecked, ElementName=CheckBox1}" />
<XBindingProxy Binding="{Binding IsChecked, ElementName=CheckBox2}" />
<Eval Evaluate="#CheckBox3.IsChecked" />
</XMultiBinding>
</TextBlock.Text>
</TextBlock>
<CheckBox IsEnabled="False"
IsChecked="{Eval {Binding Text, ElementName=ExpressionTextBox}}" />
<TextBlock Text="{StringSource 'Text from inline string source direct'}" />
<TextBlock Text="{Binding Source={StringSource 'Text from inline string source in binding'}}" />
</StackPanelEx>
</Window>