added samples
[windows-sources.git] / sdk / samples / CrossTechnologySamples / MSBuildG / wizardpages / wizardpage1.xaml
blob36e66a896bfc65e737627039c64c7a93f220d80a
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"
8     >
9   <Grid>
10     <Grid.ColumnDefinitions>
11       <ColumnDefinition Width="150"/>
12       <ColumnDefinition/>
13     </Grid.ColumnDefinitions>
14     <Grid.RowDefinitions>
15       <RowDefinition/>
16       <RowDefinition/>
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>
24   </Grid>
25 </wpf:WizardPageFunction>