-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainWindow.xaml
14 lines (14 loc) · 926 Bytes
/
MainWindow.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<Window x:Class="WpfReactiveUIExample.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="164" Width="180">
<Grid Margin="6">
<StackPanel>
<TextBox Text="{Binding AmountA, UpdateSourceTrigger=PropertyChanged}" Height="23" TextWrapping="Wrap" Width="120"/>
<TextBox Text="{Binding AmountB, UpdateSourceTrigger=PropertyChanged}" Height="23" TextWrapping="Wrap" Width="120"/>
<TextBox Text="{Binding AmountC, UpdateSourceTrigger=PropertyChanged}" Height="23" TextWrapping="Wrap" Width="120"/>
<TextBlock Text="{Binding Total, UpdateSourceTrigger=PropertyChanged}" TextWrapping="Wrap" Height="20" Width="120"/>
<Button Content="Button" Command="{Binding OkCommand}" Width="75"/>
</StackPanel>
</Grid>
</Window>