42 lines
2.1 KiB
XML
42 lines
2.1 KiB
XML
<UserControl x:Class="KanSan.UI.UCSchaedenEdit"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
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:sd="clr-namespace:KanSan.SampleData"
|
|
xmlns:local="clr-namespace:KanSan.UI"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="450" d:DesignWidth="800" Background="Gray">
|
|
<d:UserControl.DataContext>
|
|
<sd:SchaedenEditViewModelSampleData />
|
|
</d:UserControl.DataContext>
|
|
<UserControl.Resources>
|
|
<ResourceDictionary>
|
|
<ResourceDictionary.MergedDictionaries>
|
|
<ResourceDictionary Source="./../../my_controls.xaml" />
|
|
</ResourceDictionary.MergedDictionaries>
|
|
</ResourceDictionary>
|
|
</UserControl.Resources>
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="150" />
|
|
<ColumnDefinition />
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition />
|
|
<RowDefinition />
|
|
<RowDefinition />
|
|
<RowDefinition />
|
|
</Grid.RowDefinitions>
|
|
|
|
<Label Grid.Row="0" Content="Entfernung" />
|
|
<TextBox Grid.Row="0" Grid.Column="1" Text="{Binding Entfernung}" />
|
|
<StackPanel Grid.Row="1" Grid.RowSpan="2" Grid.ColumnSpan="2">
|
|
<CheckBox Content="Wurzel / Inkrustation / Ablagerungen" Style="{StaticResource checkBoxCircle}" IsChecked="{Binding WurzelInkrustationAblagerungen}" />
|
|
<CheckBox Content="Einragende Stutzen" Style="{StaticResource checkBoxCircle}" IsChecked="{Binding EinragendeStutzen}" />
|
|
<CheckBox Content="Riss / Bruch / Scherbe" Style="{StaticResource checkBoxCircle}" IsChecked="{Binding RissBruchScherbe}" />
|
|
</StackPanel>
|
|
<Button Grid.Row="3" Grid.ColumnSpan="2" Name="Speichern" Content="Speichern" Click="Speichern_Click" />
|
|
</Grid>
|
|
</UserControl>
|