1 <wpf:WizardPageFunction x:Class="Microsoft.Samples.MSBuildG.WizardPage1"
2 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4 xmlns:wpf="clr-namespace:Microsoft.Samples.MSBuildG"
5 Style="{DynamicResource WizardPageStyle}"
6 Title="Create New Project"
7 Instructions="Welcome to the MS Build Project Creation Wizard. To continue, please enter the information below"
10 <Grid.ColumnDefinitions>
11 <ColumnDefinition Width="150"/>
13 </Grid.ColumnDefinitions>
17 </Grid.RowDefinitions>
19 <TextBlock Grid.Column="0" Grid.Row="0">Project Name:</TextBlock>
20 <TextBlock Grid.Column="0" Grid.Row="1">Project Notes:</TextBlock>
22 <TextBox Style="{DynamicResource WizardEntryBox}" Margin="2,2,2,2" Grid.Row ="0" Grid.Column ="1" Name="ProjectName" Width ="400"></TextBox>
23 <TextBox Style="{DynamicResource WizardEntryBox}" Margin="2,2,2,2" Grid.Row ="1" Grid.Column ="1" Name="ProjectNotes" Width ="400" Height="220" TextWrapping="Wrap" AcceptsReturn="True" VerticalScrollBarVisibility="Visible"></TextBox>
25 </wpf:WizardPageFunction>