mirror of
https://github.com/SirLecram/HospitalServerManager
synced 2025-01-09 21:42:33 +01:00
41 lines
2.0 KiB
Plaintext
41 lines
2.0 KiB
Plaintext
|
<ContentDialog x:ConnectionId='1'
|
||
|
x:Class="HospitalServerManager.View.EditRecordDialog"
|
||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
xmlns:local="using:HospitalServerManager.View"
|
||
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||
|
mc:Ignorable="d"
|
||
|
Title="TITLE"
|
||
|
PrimaryButtonText="Potwierź"
|
||
|
|
||
|
SecondaryButtonText="Anuluj" DefaultButton="Secondary" MinWidth="800">
|
||
|
|
||
|
|
||
|
<Grid x:ConnectionId='2' Name="grid">
|
||
|
<Grid.ColumnDefinitions>
|
||
|
<ColumnDefinition/>
|
||
|
</Grid.ColumnDefinitions>
|
||
|
<Grid.RowDefinitions>
|
||
|
<RowDefinition />
|
||
|
<RowDefinition/>
|
||
|
<RowDefinition />
|
||
|
</Grid.RowDefinitions>
|
||
|
<ComboBox x:ConnectionId='3' Name="fieldToEdit" HorizontalAlignment="Stretch" VerticalAlignment="Center"
|
||
|
Margin="20" Grid.Row="0" />
|
||
|
<StackPanel Grid.Row="1" HorizontalAlignment="Center" VerticalAlignment="Center">
|
||
|
<TextBlock x:ConnectionId='4' Name="additionalTypeInfo" Text="Typ: " HorizontalAlignment="Center" Foreground="#FFBD8989"
|
||
|
Margin="0, 5, 0, 5" FontSize="12"/>
|
||
|
<TextBlock x:ConnectionId='5' Text="Format: " Name="additionalFormatInfo" HorizontalAlignment="Center" Foreground="#FFBD8989"
|
||
|
Margin="0, 5, 0, 5" FontSize="12"/>
|
||
|
<TextBlock x:ConnectionId='6' Grid.Row="1" Text="DODATKOWE INFO" Grid.ColumnSpan="3" HorizontalAlignment="Center" VerticalAlignment="Center"
|
||
|
Foreground="Gray" Name="additionalFilterInfo"/>
|
||
|
</StackPanel>
|
||
|
|
||
|
<!-- <TextBox Name="valueToUpdateTextBox" HorizontalAlignment="Stretch" VerticalAlignment="Center"
|
||
|
Grid.Column="1" Margin="20" Grid.Row="2"/> -->
|
||
|
|
||
|
</Grid>
|
||
|
</ContentDialog>
|
||
|
|