A bit of organizing
This commit is contained in:
@@ -0,0 +1,84 @@
|
||||
<Window x:Class="WD7UVN_SzTGUI_2023242.Client.WPF.GetAllServices"
|
||||
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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
xmlns:local="clr-namespace:WD7UVN_SzTGUI_2023242.Client.WPF.ViewModels"
|
||||
mc:Ignorable="d"
|
||||
Title="Services" Height="550" Width="500">
|
||||
|
||||
<Window.DataContext>
|
||||
<local:GetAllServicesViewModel/>
|
||||
</Window.DataContext>
|
||||
|
||||
<Grid>
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="9*" />
|
||||
<RowDefinition Height="1*" />
|
||||
</Grid.RowDefinitions>
|
||||
<ListBox ItemsSource="{Binding Services}" Grid.Row="0">
|
||||
<ListBox.ItemContainerStyle>
|
||||
<Style TargetType="ListBoxItem">
|
||||
<Setter Property="HorizontalContentAlignment" Value="Stretch"/>
|
||||
<Setter Property="VerticalContentAlignment" Value="Stretch" />
|
||||
<Setter Property="Padding" Value="0" />
|
||||
<Setter Property="Margin" Value="0" />
|
||||
</Style>
|
||||
</ListBox.ItemContainerStyle>
|
||||
<ListBox.ItemTemplate>
|
||||
<DataTemplate>
|
||||
<StackPanel>
|
||||
<Grid>
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="2*" />
|
||||
<ColumnDefinition Width="8*" />
|
||||
</Grid.ColumnDefinitions>
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="*" />
|
||||
<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:" />
|
||||
<TextBox Grid.Row="0" Grid.Column="1" Text="{Binding ID}" />
|
||||
|
||||
<Label Grid.Row="1" Grid.Column="0" Content="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:" />
|
||||
<TextBox Grid.Row="3" Grid.Column="1" Text="{Binding ACCOUNT}" />
|
||||
|
||||
<Label Grid.Row="4" Grid.Column="0" Content="Domain:" />
|
||||
<TextBox Grid.Row="4" Grid.Column="1" Text="{Binding SERVICE_DOMAIN}" />
|
||||
|
||||
<Label Grid.Row="5" Grid.Column="0" Content="IP address:" />
|
||||
<TextBox Grid.Row="5" Grid.Column="1" Text="{Binding IP}" />
|
||||
|
||||
<Label Grid.Row="6" Grid.Column="0" Content="Port:" />
|
||||
<TextBox Grid.Row="6" Grid.Column="1" Text="{Binding PORT}" />
|
||||
|
||||
<Label Grid.Row="7" Grid.Column="0" Content="Notes:" />
|
||||
<TextBox Grid.Row="7" Grid.Column="1" Text="{Binding NOTES}" />
|
||||
|
||||
<Label Grid.Row="8" Grid.Column="0" Content="Maintainer Team ID:" />
|
||||
<TextBox Grid.Row="8" Grid.Column="1" Text="{Binding MAINTAINER_ID}" />
|
||||
</Grid>
|
||||
</StackPanel>
|
||||
</DataTemplate>
|
||||
</ListBox.ItemTemplate>
|
||||
</ListBox>
|
||||
|
||||
<UniformGrid Rows="2" Grid.Row="1">
|
||||
<Button Content="Create new" Click="CreateNewService" />
|
||||
<Button Content="Edit selected" />
|
||||
</UniformGrid>
|
||||
</Grid>
|
||||
</Window>
|
||||
Reference in New Issue
Block a user