Skip to content

Commit

Permalink
Added prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
SmokeyStack committed Sep 11, 2024
1 parent f8f648d commit 65ce711
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion SmokeyVersionSwitcher/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,20 @@
<TabControl Grid.Row="1" Margin="0,5,0,0" BorderThickness="0,1,0,0" Padding="0" Width="Auto">
<TabItem Header="Play">
<Grid>
<ComboBox x:Name="InstalledList" ItemsSource="{Binding}" DisplayMemberPath="Name" Width="200" HorizontalAlignment="Left" Height="50" VerticalAlignment="Center" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" Margin="25,0"/>
<ComboBox x:Name="InstalledList" ItemsSource="{Binding}" Width="200" HorizontalAlignment="Left" Height="50" VerticalAlignment="Center" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" Margin="25,0">
<ComboBox.ItemTemplate>
<DataTemplate>
<TextBlock>
<TextBlock.Text>
<MultiBinding StringFormat="{}{1} {0}">
<Binding Path="Name"/>
<Binding Path="Type"/>
</MultiBinding>
</TextBlock.Text>
</TextBlock>
</DataTemplate>
</ComboBox.ItemTemplate>
</ComboBox>
<Button Content="Play" Height="75" Width="300" Click="Launch" HorizontalAlignment="Center" VerticalAlignment="Center"/>
<TextBlock x:Name="TextTest" Text="{Binding}" Margin="25,0" Width="200" Height="50" VerticalAlignment="Center" HorizontalAlignment="Right" FontSize="18" TextAlignment="Center" />
</Grid>
Expand Down

0 comments on commit 65ce711

Please sign in to comment.