-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added new Environment Application List and Updated Unit test
- Loading branch information
Manas Kalangan
committed
Mar 14, 2024
1 parent
fca21ce
commit a991c5d
Showing
4 changed files
with
31 additions
and
20 deletions.
There are no files selected for viewing
26 changes: 11 additions & 15 deletions
26
Ginger/Ginger/Environments/AddEnvironmentWizardLib/AddNewEnvAppsPage.xaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,24 @@ | ||
<Page x:Class="Ginger.Environments.AddEnvironmentWizardLib.AddNewEnvAppsPage" | ||
<Page x:Class="Ginger.Environments.AddEnvironmentWizardLib.AddNewEnvAppsPage" | ||
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:local="clr-namespace:Ginger.Environments.AddEnvironmentWizardLib" | ||
xmlns:ginger="clr-namespace:Ginger" | ||
xmlns:Ginger="clr-namespace:Ginger" xmlns:GingerCore="clr-namespace:GingerCore;assembly=GingerCore" | ||
mc:Ignorable="d" | ||
d:DesignHeight="450" d:DesignWidth="800" | ||
Title="AddNewEnvAppsPage"> | ||
|
||
<Grid Background="{StaticResource $BackgroundColor_White}"> | ||
<StackPanel> | ||
<Button x:Name="xAddAppBtn" Content="Add" ToolTip="Add New Environment Application" Style="{StaticResource @InputButtonStyle}" Width="50" HorizontalAlignment="Right" Margin="0,20,20,0" Click="xAddAppBtn_Click"/> | ||
<ListBox x:Name="xAppsListBox" Margin="0,10,0,0" Grid.Row="1"> | ||
<ListBox.ItemTemplate> | ||
<DataTemplate> | ||
<StackPanel> | ||
<CheckBox Content="{Binding Name}" IsChecked="{Binding Active}"/> | ||
</StackPanel> | ||
</DataTemplate> | ||
</ListBox.ItemTemplate> | ||
</ListBox> | ||
</StackPanel> | ||
|
||
<Ginger:ucGrid x:Name="SelectApplicationGrid" IsReadOnly="true" | ||
ShowTitle="Collapsed" ShowRefresh="Collapsed" ShowEdit="Collapsed" ShowAdd="Collapsed" ShowClearAll="Collapsed" ShowDelete="Collapsed" ShowUpDown="Collapsed"/> | ||
|
||
|
||
<Label Margin="0,0,0,0" VerticalAlignment="Bottom"> | ||
<Label.Content> | ||
<GingerCore:ucTextDicResource Text="Note: If the application you want is not there in this list then go to Configurations -> Target Applications page to add the new Application" FontSize="13" FontWeight="Bold"/> | ||
</Label.Content> | ||
</Label> | ||
|
||
</Grid> | ||
</Page> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters