diff options
| author | Shlomo Hecht <shlomo@twine-s.com> | 2019-04-01 00:14:28 +0300 |
|---|---|---|
| committer | Shlomo Hecht <shlomo@twine-s.com> | 2019-04-01 00:14:28 +0300 |
| commit | f53099c8fddc7374857d29ee5521c00d91ec6d70 (patch) | |
| tree | 4945687b08c716788666a6466a03cdab4becb733 /Software/Visual_Studio/TEMP/Tango.Scripting/Tango.Scripting.IDE/Dialogs/NewProjectDialog.xaml | |
| parent | df688ddc3e919acd254d79b73eaa22bd73d92062 (diff) | |
| parent | 09eea5f5f8ab13a98fd4f106180230916d4885b8 (diff) | |
| download | Tango-f53099c8fddc7374857d29ee5521c00d91ec6d70.tar.gz Tango-f53099c8fddc7374857d29ee5521c00d91ec6d70.zip | |
Merge branch 'master' of https://twinetfs.visualstudio.com/Tango/_git/Tango
Diffstat (limited to 'Software/Visual_Studio/TEMP/Tango.Scripting/Tango.Scripting.IDE/Dialogs/NewProjectDialog.xaml')
| -rw-r--r-- | Software/Visual_Studio/TEMP/Tango.Scripting/Tango.Scripting.IDE/Dialogs/NewProjectDialog.xaml | 33 |
1 files changed, 28 insertions, 5 deletions
diff --git a/Software/Visual_Studio/TEMP/Tango.Scripting/Tango.Scripting.IDE/Dialogs/NewProjectDialog.xaml b/Software/Visual_Studio/TEMP/Tango.Scripting/Tango.Scripting.IDE/Dialogs/NewProjectDialog.xaml index 7942a7165..914740ede 100644 --- a/Software/Visual_Studio/TEMP/Tango.Scripting/Tango.Scripting.IDE/Dialogs/NewProjectDialog.xaml +++ b/Software/Visual_Studio/TEMP/Tango.Scripting/Tango.Scripting.IDE/Dialogs/NewProjectDialog.xaml @@ -1,12 +1,35 @@ -<UserControl x:Class="Tango.Scripting.IDE.Dialogs.NewProjectDialog" +<Window x:Class="Tango.Scripting.IDE.Dialogs.NewProjectDialog" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" + xmlns:global="clr-namespace:Tango.Scripting.IDE" xmlns:local="clr-namespace:Tango.Scripting.IDE.Dialogs" mc:Ignorable="d" - d:DesignHeight="450" d:DesignWidth="800"> - <Grid> - + Title="Add New Project" + WindowStyle="ToolWindow" + ResizeMode="NoResize" ShowInTaskbar="False" WindowStartupLocation="CenterScreen" + FontSize="12" + Height="630" Width="950" > + <Window.Resources> + <ResourceDictionary> + <ResourceDictionary.MergedDictionaries> + <ResourceDictionary Source="/Tango.Scripting.IDE;component/Themes/DarkThemesColors.xaml"/> + <ResourceDictionary Source="/Tango.Scripting.IDE;component/Themes/ButtonStyle.xaml"/> + </ResourceDictionary.MergedDictionaries> + </ResourceDictionary> + </Window.Resources> + <Grid Background="{DynamicResource Window.Background}"> + <Grid.RowDefinitions> + <RowDefinition Height="*"/> + <RowDefinition Height="40"/> + </Grid.RowDefinitions> + <local:AddNewControl x:Name="AddNewControl" Grid.Row="0" Margin="10,10,10,0"/> + <Border Grid.Row="1"> + <StackPanel Orientation="Horizontal" HorizontalAlignment="Right" > + <Button Style="{DynamicResource TangoButtonStyle}" Click="OKDialog" IsDefault="True" Width="80" Height="24">OK</Button> + <Button Margin="8,0,15,0" Style="{DynamicResource TangoButtonStyle}" Click="CancelDialog" Width="80" Height="24">Cancel</Button> + </StackPanel> + </Border> </Grid> -</UserControl> +</Window> |
