Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <Window x:Class="lab4.MainWindow"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:local="clr-namespace:lab4"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- Title="MainWindow" Height="350" Width="525">
- <Window.Resources>
- <local:ImageConverter x:Key="ImageConverter"></local:ImageConverter>
- </Window.Resources>
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="*"></RowDefinition>
- <RowDefinition Height="*"></RowDefinition>
- <RowDefinition Height="5*"></RowDefinition>
- <RowDefinition Height="*"></RowDefinition>
- <RowDefinition Height="4*"></RowDefinition>
- <RowDefinition></RowDefinition>
- </Grid.RowDefinitions>
- <Label Grid.Row="0">Cities:</Label>
- <ComboBox Name="lstTeams" Grid.Row="1" DisplayMemberPath="TeamName" SelectionChanged="lstTeams_SelectionChanged">
- </ComboBox>
- <StackPanel Orientation="Horizontal" Grid.Row="2">
- <Label HorizontalAlignment="Left" Name="TeamName" FontSize="40" VerticalAlignment="Center" Content="{Binding ElementName=lstTeams, Path=SelectedItem.TeamName}"></Label>
- <Image HorizontalAlignment="Right" Name="TeamImage" VerticalAlignment="Center" Source="{Binding ElementName=lstTeams, Path=SelectedItem.ImageName, Converter={StaticResource ImageConverter}}">
- </Image>
- </StackPanel>
- <Label Grid.Row="3">Players:</Label>
- <ListBox Name="lstPlayers" Grid.Row="4"></ListBox>
- <StackPanel Orientation="Horizontal" Grid.Row="5">
- <Label>Options:</Label>
- <RadioButton Name="Rd1" IsChecked="True" VerticalAlignment="Center" Checked="Rd1_Checked">Points per game</RadioButton>
- <RadioButton Name="Rd2" VerticalAlignment="Center" Checked="Rd2_Checked">Minutes played</RadioButton>
- </StackPanel>
- </Grid>
- </Window>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement