|
5 | 5 | xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
6 | 6 | xmlns:local="clr-namespace:Vs2017GUILayoutMapper" |
7 | 7 | 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"> |
9 | 9 | <Window.Resources> |
10 | 10 | <Style TargetType="GroupBox"> |
11 | 11 | <Setter Property="Padding" Value="3,8,3,8"/> |
|
47 | 47 | <DataTemplate DataType="Workload" > |
48 | 48 | <TreeViewItem IsExpanded="{Binding Expanded, Mode=TwoWay}" ItemsSource="{Binding Components}"> |
49 | 49 | <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}" /> |
51 | 51 | </TreeViewItem.Header> |
52 | 52 | <TreeViewItem.ItemTemplate> |
53 | 53 | <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}" /> |
55 | 55 | </DataTemplate> |
56 | 56 | </TreeViewItem.ItemTemplate> |
57 | 57 | </TreeViewItem> |
|
64 | 64 | <GroupBox Header="4. Save"> |
65 | 65 | <StackPanel Orientation="Vertical"> |
66 | 66 | <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> |
68 | 68 | <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> |
70 | 70 | <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> |
71 | 71 | </StackPanel> |
72 | 72 | </GroupBox> |
73 | 73 | <GroupBox Header="5. More Info"> |
74 | 74 | <StackPanel Orientation="Vertical"> |
75 | 75 | <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> |
77 | 77 | </StackPanel> |
78 | | - |
79 | 78 | </GroupBox> |
80 | 79 | </StackPanel> |
81 | 80 | </ScrollViewer> |
|
0 commit comments