Skip to content

Commit a28008e

Browse files
committed
v1.1 with minor ui improve
1 parent c8d89f3 commit a28008e

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This software generate arguments for downloading Visual Studio for offline Usage
1010
1111
In order:
1212

13-
1. [Download](./Releases) and Run the software
13+
1. [Download][medown] and Run the software
1414
2. Select the edition
1515
2. Set options (recommended/optional and language)
1616
3. (Optional) Fetch the updated workload data.
@@ -39,8 +39,9 @@ License: [MIT](LICENSE)
3939

4040
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
4141
42+
[medown]: https://github.com/willnode/Vs2017-LayoutInGUI/releases
4243
[installer]: https://docs.microsoft.com/en-us/visualstudio/install/install-vs-inconsistent-quality-network#step-1---download-the-visual-studio-bootstrapper
4344
[officialmanual]: https://docs.microsoft.com/en-us/visualstudio/install/install-vs-inconsistent-quality-network
4445
[workloadsdoc]: https://docs.microsoft.com/en-us/visualstudio/install/workload-and-component-ids
45-
[workloadsgit]: https://github.com/MicrosoftDocs/visualstudio-docs/tree/master/docs/install
46+
[workloadsgit]: https://github.com/MicrosoftDocs/visualstudio-docs/blob/master/docs/install/workload-and-component-ids.md
4647
[certificates]: https://docs.microsoft.com/en-us/visualstudio/install/install-certificates-for-visual-studio-offline

Vs2017-LIGUI/MainWindow.xaml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
66
xmlns:local="clr-namespace:Vs2017GUILayoutMapper"
77
mc:Ignorable="d"
8-
Title="VS 2017 - Offline Layout Generator in GUI" Height="350" Width="525" Icon="Icon.ico">
8+
Title="VS 2017 - Offline Layout Generator in GUI" Height="550" Width="600" Icon="Icon.ico">
99
<Window.Resources>
1010
<Style TargetType="GroupBox">
1111
<Setter Property="Padding" Value="3,8,3,8"/>
@@ -47,11 +47,11 @@
4747
<DataTemplate DataType="Workload" >
4848
<TreeViewItem IsExpanded="{Binding Expanded, Mode=TwoWay}" ItemsSource="{Binding Components}">
4949
<TreeViewItem.Header>
50-
<CheckBox IsChecked="{Binding Selected, Mode=TwoWay}" IsEnabled="{Binding Selectable}" Content="{Binding NameFull}" Checked="_param_change" Unchecked="_param_change"/>
50+
<CheckBox IsChecked="{Binding Selected, Mode=TwoWay}" IsEnabled="{Binding Selectable}" Content="{Binding NameFull}" Checked="_param_change" Unchecked="_param_change" ToolTip="{Binding ID}" />
5151
</TreeViewItem.Header>
5252
<TreeViewItem.ItemTemplate>
5353
<DataTemplate DataType="Component">
54-
<CheckBox IsChecked="{Binding Selected, Mode=TwoWay}" IsEnabled="{Binding Selectable}" Content="{Binding NameFull}" Checked="_param_change" Unchecked="_param_change"/>
54+
<CheckBox IsChecked="{Binding Selected, Mode=TwoWay}" IsEnabled="{Binding Selectable}" Content="{Binding NameFull}" Checked="_param_change" Unchecked="_param_change" ToolTip="{Binding ID}" />
5555
</DataTemplate>
5656
</TreeViewItem.ItemTemplate>
5757
</TreeViewItem>
@@ -64,18 +64,17 @@
6464
<GroupBox Header="4. Save">
6565
<StackPanel Orientation="Vertical">
6666
<Label ToolTip="Open CMD from the installation folder and paste the command. This action will download to C:\vsLayout2017. Modify as you wish.">CLA to download packages: (?)</Label>
67-
<TextBox x:Name="_clidown" TextWrapping="Wrap" Height="40" ></TextBox>
67+
<TextBox x:Name="_clidown" TextWrapping="Wrap" MinHeight="40" Height="Auto" IsReadOnly="True" Padding="2,5,2,5" ></TextBox>
6868
<Label ToolTip="Run the command below from Downloaded Layout Folder. Mostly this action will no longer drain your bandwidth, but it's much better turn off the internet anyway.">CLA to install packages offline: (?)</Label>
69-
<TextBox x:Name="_cliinst" TextWrapping="Wrap" Height="40" ></TextBox>
69+
<TextBox x:Name="_cliinst" TextWrapping="Wrap" MinHeight="40" Height="Auto" IsReadOnly="True" Padding="2,5,2,5" ></TextBox>
7070
<Label ToolTip="Certificates stored in 'certificates' folder inside the layout folder. Just open each .p12 file and always next-click it.">NOTE: Always install certificates before performing offline installation. (?)</Label>
7171
</StackPanel>
7272
</GroupBox>
7373
<GroupBox Header="5. More Info">
7474
<StackPanel Orientation="Vertical">
7575
<Button Click="_manual_click" Padding="3,10">Open MSDN Manual</Button>
76-
<TextBlock FontStyle="Italic" HorizontalAlignment="Center">(C) Wello Soft 2017. This is a third-party software and does not represent any of Microsoft Products. <Hyperlink NavigateUri="https://github.com/Willnode/Vs2017-LayoutInGUI/" RequestNavigate="Hyperlink_RequestNavigate">Fork me</Hyperlink>. </TextBlock>
76+
<TextBlock FontStyle="Italic" HorizontalAlignment="Center">(C) Wello Soft 2017. This is a third-party software and does not represent any of Microsoft Products. <Hyperlink NavigateUri="https://github.com/willnode/Vs2017-LayoutInGUI" RequestNavigate="Hyperlink_RequestNavigate">Fork me</Hyperlink>. </TextBlock>
7777
</StackPanel>
78-
7978
</GroupBox>
8079
</StackPanel>
8180
</ScrollViewer>

Vs2017-LIGUI/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@
5050
//
5151
// You can specify all the values or you can default the Build and Revision Numbers
5252
// by using the '*' as shown below:
53-
[assembly: AssemblyVersion("1.0.*")]
53+
[assembly: AssemblyVersion("1.1.*")]

0 commit comments

Comments
 (0)