107 lines
3.8 KiB
XML
107 lines
3.8 KiB
XML
<Window
|
|
x:Class="KTDReaderGUI.MainWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:local="clr-namespace:KTDReaderGUI"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
Title="Kostenträgerdatei Reader GUI"
|
|
Width="500"
|
|
Height="400"
|
|
Background="{DynamicResource ApplicationBackground}"
|
|
mc:Ignorable="d">
|
|
<Window.Resources>
|
|
<ResourceDictionary>
|
|
<ResourceDictionary.MergedDictionaries>
|
|
<!-- Common base theme -->
|
|
<ResourceDictionary Source="pack://application:,,,/BeWo.Styles;component/ModernOrangeBlack.xaml" />
|
|
</ResourceDictionary.MergedDictionaries>
|
|
</ResourceDictionary>
|
|
</Window.Resources>
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*" />
|
|
<ColumnDefinition Width="auto" />
|
|
<ColumnDefinition Width="*" />
|
|
</Grid.ColumnDefinitions>
|
|
<Grid Grid.Column="1" Margin="10">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="auto" />
|
|
<ColumnDefinition Width="10" />
|
|
<ColumnDefinition Width="auto" MinWidth="200" />
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="auto" />
|
|
<RowDefinition Height="*" />
|
|
</Grid.RowDefinitions>
|
|
|
|
<Label
|
|
Grid.Row="0"
|
|
Grid.Column="0"
|
|
IsEnabled="False">
|
|
Kostenträger Path
|
|
</Label>
|
|
<TextBox
|
|
x:Name="input_file"
|
|
Grid.Row="0"
|
|
Grid.Column="2" />
|
|
|
|
<Label Grid.Row="1" Grid.Column="0">IK Krankenkasse</Label>
|
|
<TextBox
|
|
x:Name="input_krankenkasse"
|
|
Grid.Row="1"
|
|
Grid.Column="2" />
|
|
|
|
<Label Grid.Row="2" Grid.Column="0">Leistungserbringergruppe</Label>
|
|
<TextBox
|
|
x:Name="input_leistungsgruppe"
|
|
Grid.Row="2"
|
|
Grid.Column="2" />
|
|
|
|
<Button
|
|
Grid.Row="3"
|
|
Grid.ColumnSpan="3"
|
|
Width="100"
|
|
HorizontalAlignment="Center"
|
|
Click="Button_Click">
|
|
Ermitteln
|
|
</Button>
|
|
|
|
<Label Grid.Row="4" Grid.Column="0">IK Krankenkasse</Label>
|
|
<TextBox
|
|
x:Name="out_ikkrankenkasse"
|
|
Grid.Row="4"
|
|
Grid.Column="2"
|
|
IsEnabled="False" />
|
|
|
|
<Label Grid.Row="5" Grid.Column="0">IK Kostenträger</Label>
|
|
<TextBox
|
|
x:Name="out_ikkostentrager"
|
|
Grid.Row="5"
|
|
Grid.Column="2"
|
|
IsEnabled="False" />
|
|
|
|
<Label Grid.Row="6" Grid.Column="0">IK Datenannahmestelle</Label>
|
|
<TextBox
|
|
x:Name="out_ikdatenannahmestelle"
|
|
Grid.Row="6"
|
|
Grid.Column="2"
|
|
IsEnabled="False" />
|
|
|
|
<Label Grid.Row="7" Grid.Column="0">Bez Datenannahmestelle</Label>
|
|
<TextBox
|
|
x:Name="out_bezdatenannahmestelle"
|
|
Grid.Row="7"
|
|
Grid.Column="2"
|
|
IsEnabled="False" />
|
|
</Grid>
|
|
</Grid>
|
|
</Window>
|