Some prettifying

This commit is contained in:
MiskolcziRichard
2024-04-29 11:31:41 +02:00
parent 9687f26c19
commit 405aa58176

View File

@@ -27,58 +27,66 @@
</ListBox.ItemContainerStyle> </ListBox.ItemContainerStyle>
<ListBox.ItemTemplate> <ListBox.ItemTemplate>
<DataTemplate> <DataTemplate>
<StackPanel> <Border BorderBrush="Black" BorderThickness="1" Margin="5">
<Grid> <StackPanel>
<Grid.ColumnDefinitions> <Grid>
<ColumnDefinition Width="2*" /> <Grid.Resources>
<ColumnDefinition Width="8*" /> <Style TargetType="TextBox">
</Grid.ColumnDefinitions> <Setter Property="VerticalContentAlignment" Value="Center"/>
<Grid.RowDefinitions> </Style>
<RowDefinition Height="*" /> </Grid.Resources>
<RowDefinition Height="*" /> <Grid.ColumnDefinitions>
<RowDefinition Height="*" /> <ColumnDefinition Width="2*" />
<RowDefinition Height="*" /> <ColumnDefinition Width="8*" />
<RowDefinition Height="*" /> </Grid.ColumnDefinitions>
<RowDefinition Height="*" /> <Grid.RowDefinitions>
<RowDefinition Height="*" /> <RowDefinition Height="*" />
<RowDefinition Height="*" /> <RowDefinition Height="*" />
</Grid.RowDefinitions> <RowDefinition Height="*" />
<RowDefinition Height="*" />
<RowDefinition Height="*" />
<RowDefinition Height="*" />
<RowDefinition Height="*" />
<RowDefinition Height="*" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Label Grid.Row="0" Grid.Column="0" Content="ID:" /> <Label Grid.Row="0" Grid.Column="0" Content="ID:" />
<TextBox Grid.Row="0" Grid.Column="1" Text="{Binding ID}" /> <TextBox Grid.Row="0" Grid.Column="1" Text="{Binding ID}" IsReadOnly="True" Background="LightGray" />
<Label Grid.Row="1" Grid.Column="0" Content="Name:" /> <Label Grid.Row="1" Grid.Column="0" Content="Name:" />
<TextBox Grid.Row="1" Grid.Column="1" Text="{Binding NAME}" /> <TextBox Grid.Row="1" Grid.Column="1" Text="{Binding NAME}" />
<Label Grid.Row="2" Grid.Column="0" Content="Version:" />
<TextBox Grid.Row="2" Grid.Column="1" Text="{Binding VERSION}" />
<Label Grid.Row="3" Grid.Column="0" Content="Account:" /> <Label Grid.Row="2" Grid.Column="0" Content="Version:" />
<TextBox Grid.Row="3" Grid.Column="1" Text="{Binding ACCOUNT}" /> <TextBox Grid.Row="2" Grid.Column="1" Text="{Binding VERSION}" />
<Label Grid.Row="4" Grid.Column="0" Content="Domain:" /> <Label Grid.Row="3" Grid.Column="0" Content="Account:" />
<TextBox Grid.Row="4" Grid.Column="1" Text="{Binding SERVICE_DOMAIN}" /> <TextBox Grid.Row="3" Grid.Column="1" Text="{Binding ACCOUNT}" />
<Label Grid.Row="5" Grid.Column="0" Content="IP address:" /> <Label Grid.Row="4" Grid.Column="0" Content="Domain:" />
<TextBox Grid.Row="5" Grid.Column="1" Text="{Binding IP}" /> <TextBox Grid.Row="4" Grid.Column="1" Text="{Binding SERVICE_DOMAIN}" />
<Label Grid.Row="6" Grid.Column="0" Content="Port:" /> <Label Grid.Row="5" Grid.Column="0" Content="IP address:" />
<TextBox Grid.Row="6" Grid.Column="1" Text="{Binding PORT}" /> <TextBox Grid.Row="5" Grid.Column="1" Text="{Binding IP}" />
<Label Grid.Row="7" Grid.Column="0" Content="Notes:" /> <Label Grid.Row="6" Grid.Column="0" Content="Port:" />
<TextBox Grid.Row="7" Grid.Column="1" Text="{Binding NOTES}" /> <TextBox Grid.Row="6" Grid.Column="1" Text="{Binding PORT}" />
<Label Grid.Row="8" Grid.Column="0" Content="Maintainer Team ID:" /> <Label Grid.Row="7" Grid.Column="0" Content="Team ID:" />
<TextBox Grid.Row="8" Grid.Column="1" Text="{Binding MAINTAINER_ID}" /> <TextBox Grid.Row="7" Grid.Column="1" Text="{Binding MAINTAINER_ID}" />
</Grid>
</StackPanel> <Label Grid.Row="8" Grid.Column="0" Content="Notes:" />
<TextBox Grid.Row="8" Grid.Column="1" Text="{Binding NOTES}" />
</Grid>
</StackPanel>
</Border>
</DataTemplate> </DataTemplate>
</ListBox.ItemTemplate> </ListBox.ItemTemplate>
</ListBox> </ListBox>
<UniformGrid Rows="2" Grid.Row="1"> <UniformGrid Rows="2" Grid.Row="1">
<Button Content="Create new" Click="CreateNewService" />
<Button Content="Edit selected" Command="{Binding UpdateServiceCommand}"/> <Button Content="Edit selected" Command="{Binding UpdateServiceCommand}"/>
<Button Content="Create new" Click="CreateNewService" />
</UniformGrid> </UniformGrid>
</Grid> </Grid>
</Window> </Window>