diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-02-07 04:26:56 +0200 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-02-07 04:26:56 +0200 |
| commit | af1c7bd1b6122c1387fe6e2749f9847f4be84b16 (patch) | |
| tree | 434b68cf03755d17f5a3ae81f346aee66cd427d9 /Software/Visual_Studio/Azure/Tango.AzureUtils.UI | |
| parent | d6223286f10478ba2607852a287fa39151e0fcaf (diff) | |
| download | Tango-af1c7bd1b6122c1387fe6e2749f9847f4be84b16.tar.gz Tango-af1c7bd1b6122c1387fe6e2749f9847f4be84b16.zip | |
Working on azure utils...
Diffstat (limited to 'Software/Visual_Studio/Azure/Tango.AzureUtils.UI')
| -rw-r--r-- | Software/Visual_Studio/Azure/Tango.AzureUtils.UI/Views/EnvironmentCreationView.xaml | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/Software/Visual_Studio/Azure/Tango.AzureUtils.UI/Views/EnvironmentCreationView.xaml b/Software/Visual_Studio/Azure/Tango.AzureUtils.UI/Views/EnvironmentCreationView.xaml index d417d6c93..068e96318 100644 --- a/Software/Visual_Studio/Azure/Tango.AzureUtils.UI/Views/EnvironmentCreationView.xaml +++ b/Software/Visual_Studio/Azure/Tango.AzureUtils.UI/Views/EnvironmentCreationView.xaml @@ -44,25 +44,27 @@ <CheckBox Margin="0 5 0 0" IsChecked="{Binding Config.SynchronizeDatabaseData}">Synchronize Database Static Collections</CheckBox> <CheckBox Margin="0 5 0 0" IsChecked="{Binding Config.CreateStorageContainers}">Create MS and PPC Storage Containers</CheckBox> <CheckBox Margin="0 5 0 0" IsChecked="{Binding Config.CopyStorageBlobs}">Copy Machine Studio and PPC Latest Version Blobs</CheckBox> + <CheckBox Margin="0 5 0 0" IsChecked="{Binding Config.ConfigureMachineServiceLogging}">Configure Machine Service Logging</CheckBox> + <CheckBox Margin="0 5 0 0" IsChecked="{Binding Config.ConfigureCloudBackup}">Configure Cloud Backup</CheckBox> <CheckBox Margin="0 5 0 0" IsChecked="{Binding Config.CopyMachineServiceFiles}">Copy Machine Service Website Files</CheckBox> </StackPanel> </GroupBox> <StackPanel> - <GroupBox HorizontalAlignment="Left" Margin="50 10 10 10" Header="Environment Name/Credentials" Padding="10 10 100 10"> - <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center" MinWidth="300"> - <TextBlock>Environment Name (e.g DEV)</TextBlock> - <TextBox Margin="0 2 0 0" FontSize="20" Text="{Binding SlotName}"></TextBox> + <GroupBox HorizontalAlignment="Left" Margin="50 10 10 10" Header="Environment Name/Credentials" Padding="10 10 90 10"> + <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center" MinWidth="300"> + <TextBlock FontSize="10">Environment Name (e.g DEV)</TextBlock> + <TextBox Margin="0 2 0 0" Text="{Binding SlotName}"></TextBox> - <TextBlock Margin="0 10 0 0">Active Directory Administrator Email</TextBlock> - <TextBox Margin="0 2 0 0" FontSize="20" Text="{Binding Email}"></TextBox> + <TextBlock FontSize="10" Margin="0 10 0 0">Active Directory Administrator Email</TextBlock> + <TextBox Margin="0 2 0 0" Text="{Binding Email}"></TextBox> - <TextBlock Margin="0 10 0 0">Password</TextBlock> - <PasswordBox Margin="0 2 0 0" FontSize="20" helpers:PasswordHelper.Attach="True" helpers:PasswordHelper.Password="{Binding Password,Mode=TwoWay}"></PasswordBox> - </StackPanel> - </GroupBox> + <TextBlock Margin="0 10 0 0" FontSize="10">Password</TextBlock> + <PasswordBox Margin="0 2 0 0" helpers:PasswordHelper.Attach="True" helpers:PasswordHelper.Password="{Binding Password,Mode=TwoWay}"></PasswordBox> + </StackPanel> + </GroupBox> - <Button HorizontalAlignment="Left" Width="420" Margin="50 40 0 0" Padding="20" Command="{Binding CreateEnvironmentCommand}">CREATE ENVIRONMENT</Button> + <Button HorizontalAlignment="Left" Width="410" Margin="50 20 0 0" Padding="20" Command="{Binding CreateEnvironmentCommand}">CREATE ENVIRONMENT</Button> </StackPanel> </DockPanel> </Grid> |
