This repository has been archived by the owner on Dec 10, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
1,402 additions
and
392 deletions.
There are no files selected for viewing
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,5 +1,5 @@ | ||
<Window Name="ESD_ToolKit" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
Title="ESD ToolKit" Height="562" Width="716" ResizeMode="CanMinimize"> | ||
Title="Windows Setup ToolKit" Height="562" Width="716" ResizeMode="CanMinimize"> | ||
</Window> |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
<UserControl | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
x:Name="dropdown" | ||
> | ||
<Grid Name="MainGrid"> | ||
<Grid.Background> | ||
<SolidColorBrush Color="#FF00A6DD" Opacity="0.5"/> | ||
</Grid.Background> | ||
<Rectangle Height="562" Width="716" Stroke="White" Opacity="0.20"> | ||
<Rectangle.Fill> | ||
<VisualBrush Viewport="0,0,47.5,30" ViewportUnits="Absolute" TileMode="Tile"> <VisualBrush.Visual> <StackPanel Background="Transparent"> <TextBlock FontSize="10pt" Margin="1" Foreground="White" Text="BETA"/> </StackPanel> </VisualBrush.Visual> <VisualBrush.Transform> <RotateTransform Angle="-45" CenterX="0.5" CenterY="0.5" /> </VisualBrush.Transform> </VisualBrush> | ||
</Rectangle.Fill> | ||
</Rectangle> | ||
<StackPanel Orientation="Vertical"> | ||
<StackPanel Margin="0,0,0,15"> | ||
<Label Margin="0,30,0,0" Width="630" Foreground="White" FontFamily="Segoe UI Light" FontStretch="SemiCondensed" FontWeight="Thin" TextOptions.TextFormattingMode="Display"> | ||
<TextBlock TextWrapping="WrapWithOverflow" FontSize="32"> | ||
Select an ESD File | ||
</TextBlock> | ||
</Label> | ||
</StackPanel> | ||
<StackPanel Margin="35,15,35,0"> | ||
<TextBlock Margin="5,5,0,0" Width="620" TextWrapping="WrapWithOverflow" Foreground="White" FontSize="15" FontFamily="Segoe UI" TextOptions.TextFormattingMode="Display">x86 Windows Setup:</TextBlock> | ||
<ComboBox Margin="5,5,0,0" Name="DropDown" Height="25" Width="620"/> | ||
<TextBlock Margin="5,15,0,0" Width="620" TextWrapping="WrapWithOverflow" Foreground="White" FontSize="15" FontFamily="Segoe UI" TextOptions.TextFormattingMode="Display">x86 Windows Recovery Environement:</TextBlock> | ||
<ComboBox Margin="5,5,0,0" Name="DropDown2" Height="25" Width="620"/> | ||
<TextBlock Margin="5,15,0,0" Width="620" TextWrapping="WrapWithOverflow" Foreground="White" FontSize="15" FontFamily="Segoe UI" TextOptions.TextFormattingMode="Display">x64 Windows Setup:</TextBlock> | ||
<ComboBox Margin="5,5,0,0" Name="DropDown3" Height="25" Width="620"/> | ||
<TextBlock Margin="5,15,0,0" Width="620" TextWrapping="WrapWithOverflow" Foreground="White" FontSize="15" FontFamily="Segoe UI" TextOptions.TextFormattingMode="Display">x64 Windows Recovery Environement:</TextBlock> | ||
<ComboBox Margin="5,5,0,0" Name="DropDown4" Height="25" Width="620"/> | ||
<!-- <CheckBox Margin="5,15,0,0" Foreground="White" FontSize="15" FontFamily="Segoe UI" TextOptions.TextFormattingMode="Display" Content="Combine all languages and add them to Windows Setup and Windows PE Setup"/> --> | ||
<TextBlock Margin="5,15,0,0" Width="620" TextWrapping="WrapWithOverflow" Foreground="White" FontSize="12" FontFamily="Segoe UI" TextOptions.TextFormattingMode="Display">We found out that you are trying to combine x64 and x86 versions of Windows. We will include both setups in the same iso, but you need to select which one to use for each architecture in the selection area above.</TextBlock> | ||
<!-- <ListView Height="200" | ||
HorizontalAlignment="Left" | ||
Name="listView1" | ||
VerticalAlignment="Top" | ||
Margin="0,15,0,0" | ||
IsSynchronizedWithCurrentItem="True" | ||
> | ||
<ListView.Resources> | ||
<Style TargetType="{x:Type GridViewColumnHeader}"> | ||
<Setter Property="HorizontalContentAlignment" Value="Left" /> | ||
</Style> | ||
</ListView.Resources> | ||
<ListView.ItemContainerStyle> | ||
<Style TargetType="ListViewItem"> | ||
<Setter Property="Background" Value="Transparent" /> | ||
<Setter Property="Template"> | ||
<Setter.Value> | ||
<ControlTemplate TargetType="{x:Type ListViewItem}"> | ||
<Border | ||
BorderBrush="Transparent" | ||
BorderThickness="0" | ||
Background="{TemplateBinding Background}"> | ||
<GridViewRowPresenter HorizontalAlignment="Stretch" VerticalAlignment="{TemplateBinding VerticalContentAlignment}" Width="Auto" Margin="0" Content="{TemplateBinding Content}"/> | ||
</Border> | ||
</ControlTemplate> | ||
</Setter.Value> | ||
</Setter> | ||
<Setter Property="Focusable" Value="false"/> | ||
</Style> | ||
</ListView.ItemContainerStyle> | ||
<ListView.View> | ||
<GridView> | ||
<GridView.Columns> | ||
<GridViewColumn> | ||
<GridViewColumn.CellTemplate> | ||
<DataTemplate> | ||
<CheckBox Tag="{Binding Image}"/> | ||
</DataTemplate> | ||
</GridViewColumn.CellTemplate> | ||
</GridViewColumn> | ||
<GridViewColumn DisplayMemberBinding="{Binding Sku}" Header="Sku" /> | ||
<GridViewColumn DisplayMemberBinding="{Binding Architecture}" Header="Architecture" /> | ||
<GridViewColumn DisplayMemberBinding="{Binding Language}" Header="Language" /> | ||
<GridViewColumn DisplayMemberBinding="{Binding Build}" Header="Build" /> | ||
<GridViewColumn DisplayMemberBinding="{Binding FileName}" Header="FileName" /> | ||
<GridViewColumn DisplayMemberBinding="{Binding Sha1}" Header="Sha1" /> | ||
</GridView.Columns> | ||
</GridView> | ||
</ListView.View> | ||
</ListView> --> | ||
</StackPanel> | ||
<Label Name="Ended" Visibility="Hidden"/> | ||
</StackPanel> | ||
<StackPanel Orientation="Vertical" Margin="10,454,35,10"> | ||
<Button Name="button2" Content="Back" Height="25" Margin="449,20,110,0" IsEnabled="False" IsDefault="False"/> | ||
</StackPanel> | ||
<StackPanel Orientation="Vertical" Margin="10,454,35,10"> | ||
<Button Name="button" Content="Next" Height="25" Margin="554,20,5,0" IsDefault="True"/> | ||
</StackPanel> | ||
</Grid> | ||
</UserControl> |
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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<UserControl | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
x:Name="dropdown" | ||
> | ||
<Grid Name="MainGrid"> | ||
<Grid.Background> | ||
<SolidColorBrush Color="#FF00A6DD" Opacity="0.5"/> | ||
</Grid.Background> | ||
<Rectangle Height="562" Width="716" Stroke="White" Opacity="0.20"> | ||
<Rectangle.Fill> | ||
<VisualBrush Viewport="0,0,47.5,30" ViewportUnits="Absolute" TileMode="Tile"> <VisualBrush.Visual> <StackPanel Background="Transparent"> <TextBlock FontSize="10pt" Margin="1" Foreground="White" Text="BETA"/> </StackPanel> </VisualBrush.Visual> <VisualBrush.Transform> <RotateTransform Angle="-45" CenterX="0.5" CenterY="0.5" /> </VisualBrush.Transform> </VisualBrush> | ||
</Rectangle.Fill> | ||
</Rectangle> | ||
<StackPanel Orientation="Vertical"> | ||
<StackPanel Margin="0,0,0,15"> | ||
<Label Margin="0,30,0,0" Width="630" Foreground="White" FontFamily="Segoe UI Light" FontStretch="SemiCondensed" FontWeight="Thin" TextOptions.TextFormattingMode="Display"> | ||
<TextBlock TextWrapping="WrapWithOverflow" FontSize="32"> | ||
Select an ESD File | ||
</TextBlock> | ||
</Label> | ||
</StackPanel> | ||
<StackPanel Margin="35,15,35,0"> | ||
<TextBlock Margin="5,5,0,0" Width="620" TextWrapping="WrapWithOverflow" Foreground="White" FontSize="15" FontFamily="Segoe UI" TextOptions.TextFormattingMode="Display">Windows Setup:</TextBlock> | ||
<ComboBox Margin="5,5,0,0" Name="DropDown" Height="25" Width="620"/> | ||
<TextBlock Margin="5,15,0,0" Width="620" TextWrapping="WrapWithOverflow" Foreground="White" FontSize="15" FontFamily="Segoe UI" TextOptions.TextFormattingMode="Display">Windows Recovery Environement:</TextBlock> | ||
<ComboBox Margin="5,5,0,0" Name="DropDown2" Height="25" Width="620"/> | ||
</StackPanel> | ||
<Label Name="Ended" Visibility="Hidden"/> | ||
</StackPanel> | ||
<StackPanel Orientation="Vertical" Margin="10,454,35,10"> | ||
<Button Name="button2" Content="Back" Height="25" Margin="449,20,110,0" IsEnabled="False" IsDefault="False"/> | ||
</StackPanel> | ||
<StackPanel Orientation="Vertical" Margin="10,454,35,10"> | ||
<Button Name="button" Content="Next" Height="25" Margin="554,20,5,0" IsDefault="True"/> | ||
</StackPanel> | ||
</Grid> | ||
</UserControl> |
Binary file not shown.
Oops, something went wrong.