Controlls editiert
This commit is contained in:
@@ -3,6 +3,7 @@
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:self="clr-namespace:KanSan.ViewModel;assembly=KanSan.ViewModel"
|
||||
xmlns:local="clr-namespace:KanSan.UI"
|
||||
mc:Ignorable="d"
|
||||
d:DesignHeight="450" d:DesignWidth="800" Background="LightGray">
|
||||
@@ -14,7 +15,52 @@
|
||||
</ResourceDictionary>
|
||||
</UserControl.Resources>
|
||||
<Grid>
|
||||
<CheckBox Content="Rohrleitung in Betrieb" IsChecked="True" Style="{StaticResource checkBoxCircle}"/>
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="Auto" />
|
||||
<RowDefinition />
|
||||
</Grid.RowDefinitions>
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition />
|
||||
<ColumnDefinition />
|
||||
</Grid.ColumnDefinitions>
|
||||
<StackPanel Grid.Column="1">
|
||||
<CheckBox Content="Rohrleitung in Betrieb" IsChecked="True" Style="{StaticResource checkBoxCircle}"/>
|
||||
<CheckBox Content="Wasserhaltung durchgeführt" IsChecked="True" Style="{StaticResource checkBoxCircle}" />
|
||||
<CheckBox Content="Haltung gespült" IsChecked="True" Style="{StaticResource checkBoxCircle}" />
|
||||
<CheckBox Content="Genehmigung Erforderlich" IsChecked="True" Style="{StaticResource checkBoxCircle}" />
|
||||
<CheckBox Content="Baustellen sicherung erforderlich" IsChecked="False" Style="{StaticResource checkBoxCircle}" />
|
||||
</StackPanel>
|
||||
<Grid Grid.Column="0">
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition />
|
||||
<ColumnDefinition />
|
||||
</Grid.ColumnDefinitions>
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition />
|
||||
<RowDefinition />
|
||||
<RowDefinition />
|
||||
<RowDefinition />
|
||||
<RowDefinition />
|
||||
<RowDefinition />
|
||||
</Grid.RowDefinitions>
|
||||
<Label Grid.Row="0" Grid.Column="0" Content="Strassename"/>
|
||||
<Label Grid.Row="1" Grid.Column="0" Content="Obere Punkt" />
|
||||
<Label Grid.Row="2" Grid.Column="0" Content="Untere Punkt" />
|
||||
<Label Grid.Row="3" Grid.Column="0" Content="Objektbezeichnung" />
|
||||
<Label Grid.Row="4" Grid.Column="0" Content="Durchmesser" />
|
||||
<Label Grid.Row="5" Grid.Column="0" Content="Material" />
|
||||
|
||||
<TextBox Grid.Row="0" Grid.Column="1" Text="{Binding Strassename}" />
|
||||
<TextBox Grid.Row="1" Grid.Column="1" Text="{Binding OberePunkt}" />
|
||||
<TextBox Grid.Row="2" Grid.Column="1" Text="{Binding UnterePunkt}" />
|
||||
<TextBox Grid.Row="3" Grid.Column="1" Text="{Binding Objektnummer}" />
|
||||
<TextBox Grid.Row="4" Grid.Column="1" Text="{Binding DN}" />
|
||||
<ComboBox Grid.Row="5" Grid.Column="1">
|
||||
<ComboBoxItem Content="Lala" />
|
||||
<ComboBoxItem Content="Haha" />
|
||||
</ComboBox>
|
||||
<!--<TextBox Grid.Row="5" Grid.Column="1" Text="{Binding Material}" />-->
|
||||
</Grid>
|
||||
<!--<RadioButton Name="my" Content="Rohrleitung in Betrieb" Style="{StaticResource ToggelButtonList}" />-->
|
||||
</Grid>
|
||||
</UserControl>
|
||||
|
||||
Reference in New Issue
Block a user