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
0619eee
commit 9097b9e
Showing
30 changed files
with
467 additions
and
118 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
5 changes: 3 additions & 2 deletions
5
WolvenKit/ViewModels/SettingsPages/SubPages/General/AccountSubSettingsViewModel.cs
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,12 +1,13 @@ | ||
using System; | ||
using Catel.MVVM; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace WolvenKit.ViewModels.SettingsPages.SubPages.General | ||
{ | ||
class AccountSubSettingsViewModel | ||
class AccountSubSettingsViewModel : ViewModelBase | ||
{ | ||
} | ||
} |
5 changes: 3 additions & 2 deletions
5
WolvenKit/ViewModels/SettingsPages/SubPages/General/GlobalSubSettingsViewModel.cs
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,12 +1,13 @@ | ||
using System; | ||
using Catel.MVVM; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace WolvenKit.ViewModels.SettingsPages.SubPages.General | ||
{ | ||
class GlobalSubSettingsViewModel | ||
class GlobalSubSettingsViewModel : ViewModelBase | ||
{ | ||
} | ||
} |
12 changes: 0 additions & 12 deletions
12
WolvenKit/ViewModels/SettingsPages/SubPages/General/LanguageSubSettingsViewModel.cs
This file was deleted.
Oops, something went wrong.
5 changes: 3 additions & 2 deletions
5
WolvenKit/ViewModels/SettingsPages/SubPages/General/LoggingSubSettingsViewModel.cs
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,12 +1,13 @@ | ||
using System; | ||
using Catel.MVVM; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace WolvenKit.ViewModels.SettingsPages.SubPages.General | ||
{ | ||
class LoggingSubSettingsViewModel | ||
class LoggingSubSettingsViewModel : ViewModelBase | ||
{ | ||
} | ||
} |
5 changes: 3 additions & 2 deletions
5
WolvenKit/ViewModels/SettingsPages/SubPages/General/ThemeSubSettingsViewModel.cs
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,12 +1,13 @@ | ||
using System; | ||
using Catel.MVVM; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace WolvenKit.ViewModels.SettingsPages.SubPages.General | ||
{ | ||
class ThemeSubSettingsViewModel | ||
class ThemeSubSettingsViewModel : ViewModelBase | ||
{ | ||
} | ||
} |
5 changes: 3 additions & 2 deletions
5
WolvenKit/ViewModels/SettingsPages/SubPages/General/UpdatesSubSettingsViewModel.cs
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,12 +1,13 @@ | ||
using System; | ||
using Catel.MVVM; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace WolvenKit.ViewModels.SettingsPages.SubPages.General | ||
{ | ||
class UpdatesSubSettingsViewModel | ||
class UpdatesSubSettingsViewModel : ViewModelBase | ||
{ | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
WolvenKit/ViewModels/SettingsPages/SubPages/Tool/AssetBrowserSubSettingsViewModel.cs
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,13 @@ | ||
using Catel.MVVM; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace WolvenKit.ViewModels.SettingsPages.SubPages.Tool | ||
{ | ||
class AssetBrowserSubSettingsViewModel : ViewModelBase | ||
{ | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
WolvenKit/ViewModels/SettingsPages/SubPages/Tool/CodeEditorSubSettingsViewModel.cs
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,13 @@ | ||
using Catel.MVVM; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace WolvenKit.ViewModels.SettingsPages.SubPages.Tool | ||
{ | ||
class CodeEditorSubSettingsViewModel : ViewModelBase | ||
{ | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
WolvenKit/ViewModels/SettingsPages/SubPages/Tool/PluginManagerSubSettingsViewModel.cs
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,13 @@ | ||
using Catel.MVVM; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace WolvenKit.ViewModels.SettingsPages.SubPages.Tool | ||
{ | ||
class PluginManagerSubSettingsViewModel : ViewModelBase | ||
{ | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
WolvenKit/ViewModels/SettingsPages/SubPages/Tool/VisualEditorSubSettingsViewModel.cs
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,13 @@ | ||
using Catel.MVVM; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace WolvenKit.ViewModels.SettingsPages.SubPages.Tool | ||
{ | ||
class VisualEditorSubSettingsViewModel : ViewModelBase | ||
{ | ||
} | ||
} |
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
50 changes: 38 additions & 12 deletions
50
WolvenKit/Views/SettingsPages/SubPages/General/AccountSubSettingsView.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,42 @@ | ||
<catel:UserControl x:Class="WolvenKit.Views.SettingsPages.SubPages.General.AccountSubSettingsView" | ||
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:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:iconPacks="http://metro.mahapps.com/winfx/xaml/iconpacks" | ||
|
||
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="WolvenKit Profile" VerticalAlignment="Center" Margin="0,0,50,0"/> | ||
<StackPanel Orientation="Horizontal"> | ||
<TextBox Margin="250,0,0,0" Width="250" Text=""/> | ||
</StackPanel> | ||
</Grid> | ||
|
||
|
||
</Border> | ||
|
||
<Border BorderThickness="4,0,0,2" Margin="15,5,32,10" Background="{DynamicResource Fluent.Ribbon.Brushes.Backstage.Background}" Style="{StaticResource BorderTipPrimary}"> | ||
<Grid> | ||
<TextBlock Text="Nexus Account" VerticalAlignment="Center" Margin="0,0,50,0"/> | ||
<StackPanel Orientation="Horizontal"> | ||
<ComboBox Margin="250,0,0,0" VerticalAlignment="Center" Width="250" Text=""/> | ||
|
||
</StackPanel> | ||
</Grid> | ||
|
||
</Border> | ||
|
||
|
||
</StackPanel> | ||
|
||
</Grid> | ||
|
||
</Grid> | ||
|
||
</catel:UserControl> |
Oops, something went wrong.