forked from WolvenKit/WolvenKit
-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
2bb355e
commit 63c0d99
Showing
4 changed files
with
160 additions
and
24 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
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
122 changes: 111 additions & 11 deletions
122
WolvenKit/Views/SettingsPages/SubPages/Editor/CompatibilitySubSettingsView.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,16 +1,116 @@ | ||
<catel:UserControl x:Class="WolvenKit.Views.SettingsPages.SubPages.Editor.CompatibilitySubSettingsView" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns:catel="http://schemas.catelproject.com"> | ||
|
||
<Grid> | ||
<Grid.RowDefinitions> | ||
<RowDefinition Height="Auto" /> | ||
<RowDefinition Height="Auto" /> | ||
</Grid.RowDefinitions> | ||
|
||
<Label Grid.Row="0" Content="{Binding Title}" /> | ||
<Label Grid.Row="1" Content="Here goes your real content" /> | ||
xmlns:catel="http://schemas.catelproject.com" xmlns:hc="https://handyorg.github.io/handycontrol" xmlns:iconPacks="http://metro.mahapps.com/winfx/xaml/iconpacks"> | ||
|
||
<Grid hc:ThemeManager.AccentColorElement="{DynamicResource MahApps.Brushes.Accent3}"> | ||
<Grid VerticalAlignment="Top" HorizontalAlignment="Left"> | ||
|
||
<StackPanel> | ||
|
||
<Border BorderThickness="4,0,0,6" Margin="15,15,32,0" Background="{DynamicResource Fluent.Ribbon.Brushes.Backstage.Background}" Style="{StaticResource BorderTipPrimary}"> | ||
<Grid> | ||
<TextBlock Text="The Witcher 3" FontSize="16" VerticalAlignment="Center" Margin="0,0,50,0"/> | ||
|
||
</Grid> | ||
|
||
|
||
</Border> | ||
<Border BorderThickness="4,0,0,2" Margin="15,15,32,10" Background="{DynamicResource Fluent.Ribbon.Brushes.Backstage.Background}" Style="{StaticResource BorderTipPrimary}"> | ||
<Grid> | ||
<TextBlock Text="Executable Path" VerticalAlignment="Center" Margin="0,0,50,0"/> | ||
<Button Margin="-45,0,0,0"> | ||
<iconPacks:PackIconCodicons Kind="FolderOpened"/> | ||
</Button> | ||
<StackPanel Orientation="Horizontal"> | ||
<TextBox Margin="250,0,0,0" Width="250" Text=""/> | ||
</StackPanel> | ||
</Grid> | ||
|
||
|
||
</Border> | ||
|
||
<Border BorderThickness="4,0,0,2" Margin="15,15,32,10" Background="{DynamicResource Fluent.Ribbon.Brushes.Backstage.Background}" Style="{StaticResource BorderTipPrimary}"> | ||
<Grid> | ||
<TextBlock Text="WCC_Lite.exe Path" VerticalAlignment="Center" Margin="0,0,50,0"/> | ||
<Button Margin="-45,0,0,0"> | ||
<iconPacks:PackIconCodicons Kind="FolderOpened"/> | ||
</Button> | ||
<StackPanel Orientation="Horizontal"> | ||
<TextBox Margin="250,0,0,0" Width="250" Text=""/> | ||
</StackPanel> | ||
</Grid> | ||
|
||
|
||
</Border> | ||
<Border BorderThickness="4,0,0,2" Margin="15,15,32,10" Background="{DynamicResource Fluent.Ribbon.Brushes.Backstage.Background}" Style="{StaticResource BorderTipPrimary}"> | ||
<Grid> | ||
<TextBlock Text="Uncooked Depot Path" VerticalAlignment="Center" Margin="0,0,50,0"/> | ||
<Button Margin="-45,0,0,0"> | ||
<iconPacks:PackIconCodicons Kind="FolderOpened"/> | ||
</Button> | ||
<StackPanel Orientation="Horizontal"> | ||
<TextBox Margin="250,0,0,0" Width="250" Text=""/> | ||
</StackPanel> | ||
</Grid> | ||
|
||
|
||
</Border> | ||
<Border BorderThickness="4,0,0,2" Margin="15,15,32,10" Background="{DynamicResource Fluent.Ribbon.Brushes.Backstage.Background}" Style="{StaticResource BorderTipPrimary}"> | ||
<Grid> | ||
<TextBlock Text="Mods Folder Path" VerticalAlignment="Center" Margin="0,0,50,0"/> | ||
<Button Margin="-45,0,0,0"> | ||
<iconPacks:PackIconCodicons Kind="FolderOpened"/> | ||
</Button> | ||
<StackPanel Orientation="Horizontal"> | ||
<TextBox Margin="250,0,0,0" Width="250" Text=""/> | ||
</StackPanel> | ||
</Grid> | ||
|
||
|
||
</Border> | ||
<Border BorderThickness="4,0,0,2" Margin="15,15,32,10" Background="{DynamicResource Fluent.Ribbon.Brushes.Backstage.Background}" Style="{StaticResource BorderTipPrimary}"> | ||
<Grid> | ||
<TextBlock Text="DLC Folder Path" VerticalAlignment="Center" Margin="0,0,50,0"/> | ||
<Button Margin="-45,0,0,0"> | ||
<iconPacks:PackIconCodicons Kind="FolderOpened"/> | ||
</Button> | ||
<StackPanel Orientation="Horizontal"> | ||
<TextBox Margin="250,0,0,0" Width="250" Text=""/> | ||
</StackPanel> | ||
</Grid> | ||
|
||
|
||
</Border> | ||
|
||
|
||
<Border BorderThickness="4,0,0,6" Margin="15,50,32,0" Background="{DynamicResource Fluent.Ribbon.Brushes.Backstage.Background}" Style="{StaticResource BorderTipPrimary}"> | ||
<Grid> | ||
<TextBlock Text="Cyberpunk 2077" FontSize="16" VerticalAlignment="Center" Margin="0,0,50,0"/> | ||
|
||
</Grid> | ||
|
||
|
||
</Border> | ||
<Border BorderThickness="4,0,0,2" Margin="15,15,32,10" Background="{DynamicResource Fluent.Ribbon.Brushes.Backstage.Background}" Style="{StaticResource BorderTipPrimary}"> | ||
<Grid> | ||
<TextBlock Text="Executable Path" VerticalAlignment="Center" Margin="0,0,50,0"/> | ||
<Button Margin="-45,0,0,0"> | ||
<iconPacks:PackIconCodicons Kind="FolderOpened"/> | ||
</Button> | ||
<StackPanel Orientation="Horizontal"> | ||
<TextBox Margin="250,0,0,0" Width="250" Text=""/> | ||
|
||
</StackPanel> | ||
</Grid> | ||
|
||
|
||
</Border> | ||
|
||
</StackPanel> | ||
|
||
</Grid> | ||
|
||
</Grid> | ||
|
||
</catel:UserControl> |
37 changes: 26 additions & 11 deletions
37
WolvenKit/Views/SettingsPages/SubPages/Editor/GeneralSubSettingsView.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,16 +1,31 @@ | ||
<catel:UserControl x:Class="WolvenKit.Views.SettingsPages.SubPages.Editor.GeneralSubSettingsView" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns:catel="http://schemas.catelproject.com"> | ||
|
||
<Grid> | ||
<Grid.RowDefinitions> | ||
<RowDefinition Height="Auto" /> | ||
<RowDefinition Height="Auto" /> | ||
</Grid.RowDefinitions> | ||
|
||
<Label Grid.Row="0" Content="{Binding Title}" /> | ||
<Label Grid.Row="1" Content="Here goes your real content" /> | ||
xmlns:catel="http://schemas.catelproject.com" xmlns:hc="https://handyorg.github.io/handycontrol"> | ||
|
||
<Grid hc:ThemeManager.AccentColorElement="{DynamicResource MahApps.Brushes.Accent3}"> | ||
<Grid VerticalAlignment="Top" HorizontalAlignment="Left"> | ||
|
||
<StackPanel> | ||
|
||
|
||
<Border BorderThickness="4,0,0,2" Margin="15,15,32,10" Background="{DynamicResource Fluent.Ribbon.Brushes.Backstage.Background}" Style="{StaticResource BorderTipPrimary}"> | ||
<Grid> | ||
<TextBlock Text="Automatically install mods after creation" VerticalAlignment="Center" Margin="0,0,50,0"/> | ||
<StackPanel Margin="250,0,0,0" Orientation="Horizontal"> | ||
<Button>TEMPLATE</Button> | ||
</StackPanel> | ||
</Grid> | ||
|
||
|
||
</Border> | ||
|
||
|
||
|
||
</StackPanel> | ||
|
||
</Grid> | ||
|
||
</Grid> | ||
|
||
</catel:UserControl> |