-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRasterDialog.xaml
More file actions
35 lines (31 loc) · 1.6 KB
/
RasterDialog.xaml
File metadata and controls
35 lines (31 loc) · 1.6 KB
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
<Window x:Class="NCHops.RasterDialog"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Raster" Width="280" Height="170"
WindowStartupLocation="CenterOwner" ResizeMode="NoResize">
<Grid Margin="16">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<Grid Grid.Row="0">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="120"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="34"/>
<RowDefinition Height="34"/>
</Grid.RowDefinitions>
<Label Grid.Row="0" Grid.Column="0" Content="Abstand X (mm):" VerticalAlignment="Center"/>
<TextBox Grid.Row="0" Grid.Column="1" x:Name="TxtRasterX" Text="50" VerticalAlignment="Center"/>
<Label Grid.Row="1" Grid.Column="0" Content="Abstand Y (mm):" VerticalAlignment="Center"/>
<TextBox Grid.Row="1" Grid.Column="1" x:Name="TxtRasterY" Text="50" VerticalAlignment="Center"/>
</Grid>
<StackPanel Grid.Row="2" Orientation="Horizontal" HorizontalAlignment="Right" Margin="0,10,0,0">
<Button Content="OK" Width="75" Margin="0,0,8,0" Click="OnOk" IsDefault="True"/>
<Button Content="Abbrechen" Width="85" Click="OnCancel"/>
</StackPanel>
</Grid>
</Window>