ProgaOra/20250220_Dolgozat/HegymaszoVersenyGUI/HegymaszoVersenyGUI/MainWindow.xaml
2025-02-20 10:16:23 +01:00

80 lines
3.7 KiB
XML

<Window x:Class="HegymaszoVersenyGUI.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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:HegymaszoVersenyGUI"
mc:Ignorable="d"
Title="HegymászóGUI" Height="600" Width="900">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition></ColumnDefinition>
<ColumnDefinition></ColumnDefinition>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="25*"></RowDefinition>
<RowDefinition Height="25*"></RowDefinition>
<RowDefinition Height="10*"></RowDefinition>
<RowDefinition Height="40*"></RowDefinition>
</Grid.RowDefinitions>
<ListBox x:Name="versenyzokListBox" Grid.Row="0" Grid.Column="0" Grid.RowSpan="4" SelectionChanged="versenyzokListBox_SelectionChanged">
</ListBox>
<GroupBox Grid.Row="0" Grid.Column="1" Grid.RowSpan="2">
<GroupBox.Header>Versenyző</GroupBox.Header>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition></ColumnDefinition>
<ColumnDefinition></ColumnDefinition>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
</Grid.RowDefinitions>
<Label Grid.Row="0" Grid.Column="0">Mászó id:</Label>
<TextBox Grid.Row="0" Grid.Column="1" x:Name="midTextBox"></TextBox>
<Label Grid.Row="1" Grid.Column="0">Mászó név:</Label>
<TextBox Grid.Row="1" Grid.Column="1" x:Name="mnevTextBox"></TextBox>
<Label Grid.Row="2" Grid.Column="0">Születési év:</Label>
<TextBox Grid.Row="2" Grid.Column="1" x:Name="szulevTextBox"></TextBox>
<Label Grid.Row="3" Grid.Column="0">Születési hónap:</Label>
<TextBox Grid.Row="3" Grid.Column="1" x:Name="szulhoTextBox"></TextBox>
<Label Grid.Row="4" Grid.Column="0">Nem:</Label>
<TextBox Grid.Row="4" Grid.Column="1" x:Name="nemTextBox"></TextBox>
<Label Grid.Row="5" Grid.Column="0">Elért magasság:</Label>
<TextBox Grid.Row="5" Grid.Column="1" x:Name="magassagTextBox"></TextBox>
<Label Grid.Row="6" Grid.Column="0">Mászási idő:</Label>
<TextBox Grid.Row="6" Grid.Column="1" x:Name="maszoidoTextBox"></TextBox>
<Label Grid.Row="7" Grid.Column="0">Ország:</Label>
<TextBox Grid.Row="7" Grid.Column="1" x:Name="orszagTextBox"></TextBox>
</Grid>
</GroupBox>
<Grid Grid.Row="2" Grid.Column="1">
<Grid.ColumnDefinitions>
<ColumnDefinition></ColumnDefinition>
</Grid.ColumnDefinitions>
<Button x:Name="keresesButton" Click="keresesButton_Click" FontSize="20">Keresés</Button>
</Grid>
<GroupBox Grid.Row="3" Grid.Column="1">
<GroupBox.Header>Statisztika</GroupBox.Header>
<ListBox x:Name="statisztikaListBox"></ListBox>
</GroupBox>
</Grid>
</Window>