1 <Window x:Class="Microsoft.Samples.MSBuildG.PickerWindow"
2 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4 Title="GUI for MSBuild"
8 Style="{DynamicResource WindowStyle}"
10 WindowStartupLocation="CenterScreen" >
12 <Grid Style="{DynamicResource ContentGrid}">
14 <!--Begin Window Content-->
15 <Grid.ColumnDefinitions>
16 <ColumnDefinition Width="*"/>
17 </Grid.ColumnDefinitions>
19 <RowDefinition Height="Auto"/>
20 <RowDefinition Height="*"/>
21 <RowDefinition Height="Auto"/>
22 </Grid.RowDefinitions>
24 <TextBlock Grid.Column="0" Grid.Row="1" TextAlignment="Center" Margin="4,12,4,4" FontSize="12">
25 Welcome to GUI for MSBuild. Please select an editor view below:
28 <StackPanel Grid.Row="1" Grid.Column="0" Orientation ="Horizontal" VerticalAlignment="Center" HorizontalAlignment="Center">
29 <Button Style ="{DynamicResource ChooseButton}" Margin ="0,0,10,0" Click="ShowWizard">
30 <StackPanel Orientation ="Vertical" HorizontalAlignment ="Center" Height="80">
31 <Image Source ="pack://application:,,,/Icons/generic.ico" Width="48"/>
32 <TextBlock HorizontalAlignment ="Center" TextAlignment="Center" TextWrapping="Wrap">
33 Create New Project Wizard
37 <Button Style ="{DynamicResource ChooseButton}" Click="ShowDesigner">
38 <StackPanel Orientation ="Vertical" HorizontalAlignment ="Center" Height="80">
39 <Image Source ="pack://application:,,,/Icons/folderopen.ico" Width="48"/>
40 <TextBlock HorizontalAlignment ="Center" TextAlignment="Center" TextWrapping="Wrap">
49 <!--End Window Content-->
51 <!-- Begin Window Resources -->
54 <Style x:Key ="WindowChooseButton" TargetType ="{x:Type Button}">
59 <!-- End Window Resources -->