|
49 | 49 | <Grid.ColumnDefinitions> |
50 | 50 | <ColumnDefinitionWidth="18*"/> |
51 | 51 | <ColumnDefinitionWidth="*"/> |
| 52 | + <ColumnDefinitionWidth="*"/> |
52 | 53 | </Grid.ColumnDefinitions> |
53 | 54 | <TextBox Grid.Column="0"x:Name="txtNewProjectFolder"VerticalAlignment="Center"IsUndoEnabled="True"TextChanged="txtNewProjectFolder_TextChanged"PreviewKeyDown="TxtNewProjectName_PreviewKeyDown"TabIndex="0"Margin="0,2,6,2" /> |
54 | 55 | <Button Grid.Column="1"x:Name="btnBrowseForProjectFolder"Style="{StaticResource CustomButton}"ToolTip="Browse for New Project folder"Content="..."Height="22"Width="22"HorizontalAlignment="Right"VerticalAlignment="Top"FontSize="16"Padding="1,-2,1,1"BorderBrush="{x:Null}"Click="btnBrowseForProjectFolder_Click"/> |
| 56 | + <Button Grid.Column="2"x:Name="btnCreateMissingFolder"Style="{StaticResource CustomButton}"ToolTip="Create Missing Folder from your path"Content="+"Height="22"Width="22"HorizontalAlignment="Right"VerticalAlignment="Top"FontSize="16"Padding="1,-2,1,1"BorderBrush="{x:Null}"Click="btnCreateMissingFolder_Click"/> |
55 | 57 | </Grid> |
56 | 58 |
|
57 | 59 | <!--<Label x:Name="lblNewProjectFolder" Content="(folder)" Foreground="{DynamicResource ThemeButtonForegroundDisabled}" Margin="0" FontSize="10" Padding="5,0,5,3" />--> |
|
64 | 66 | <LabelContent="Cancel"Foreground="{Binding RelativeSource={RelativeSource AncestorType=Button}, Path=Foreground}"/> |
65 | 67 | </Button> |
66 | 68 | <Button Grid.Column="1"Style="{StaticResource CustomButton}"x:Name="btnCreateNewProject"Margin="3,0,0,3"BorderBrush="{x:Null}"VerticalAlignment="Top"Height="35"Click="BtnCreateNewProject_Click"TabIndex="3"> |
67 | | - <LabelContent="_Create"Foreground="{Binding RelativeSource={RelativeSource AncestorType=Button}, Path=Foreground}"/> |
| 69 | + <LabelContent="_Create Project"Foreground="{Binding RelativeSource={RelativeSource AncestorType=Button}, Path=Foreground}"/> |
68 | 70 | </Button> |
69 | 71 | </Grid> |
70 | 72 |
|
|