|
@@ -6,7 +6,9 @@
|
|
xmlns:sf="http://schemas.syncfusion.com/wpf"
|
|
xmlns:sf="http://schemas.syncfusion.com/wpf"
|
|
xmlns:wpf="clr-namespace:InABox.Wpf"
|
|
xmlns:wpf="clr-namespace:InABox.Wpf"
|
|
mc:Ignorable="d"
|
|
mc:Ignorable="d"
|
|
- Title="DoubleEdit" Height="200" Width="300">
|
|
|
|
|
|
+ Title="DoubleEdit" Height="200" Width="300"
|
|
|
|
+ Loaded="ThemableWindow_Loaded"
|
|
|
|
+ KeyUp="Editor_KeyUp">
|
|
<Grid>
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*" />
|
|
<RowDefinition Height="*" />
|
|
@@ -22,7 +24,8 @@
|
|
HorizontalContentAlignment="Left" VerticalAlignment="Stretch" VerticalContentAlignment="Center"
|
|
HorizontalContentAlignment="Left" VerticalAlignment="Stretch" VerticalContentAlignment="Center"
|
|
Content="Enter Value" />
|
|
Content="Enter Value" />
|
|
<sf:DoubleTextBox x:Name="Editor" Grid.Row="0" Grid.Column="1" Margin="20" Grid.ColumnSpan="3"
|
|
<sf:DoubleTextBox x:Name="Editor" Grid.Row="0" Grid.Column="1" Margin="20" Grid.ColumnSpan="3"
|
|
- HorizontalAlignment="Stretch" VerticalAlignment="Center" Value="0" TextAlignment="Center" />
|
|
|
|
|
|
+ HorizontalAlignment="Stretch" VerticalAlignment="Center" Value="0" TextAlignment="Center"
|
|
|
|
+ KeyUp="Editor_KeyUp"/>
|
|
<Button x:Name="OK" Grid.Row="1" Grid.Column="2" Margin="5" Content="OK" Click="OK_Click" />
|
|
<Button x:Name="OK" Grid.Row="1" Grid.Column="2" Margin="5" Content="OK" Click="OK_Click" />
|
|
<Button x:Name="Cancel" Grid.Row="1" Grid.Column="3" Margin="5" Content="Cancel" Click="Cancel_Click" />
|
|
<Button x:Name="Cancel" Grid.Row="1" Grid.Column="3" Margin="5" Content="Cancel" Click="Cancel_Click" />
|
|
</Grid>
|
|
</Grid>
|