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
9097b9e
commit 2bb355e
Showing
9 changed files
with
85 additions
and
4 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
13 changes: 13 additions & 0 deletions
13
WolvenKit/ViewModels/SettingsPages/SubPages/Editor/CompatibilitySubSettingsViewModel.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.Editor | ||
{ | ||
class CompatibilitySubSettingsViewModel : ViewModelBase | ||
{ | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
WolvenKit/ViewModels/SettingsPages/SubPages/Editor/GeneralSubSettingsViewModel.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.Editor | ||
{ | ||
class GeneralSubSettingsViewModel : 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
16 changes: 16 additions & 0 deletions
16
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<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" /> | ||
</Grid> | ||
|
||
</catel:UserControl> |
11 changes: 11 additions & 0 deletions
11
WolvenKit/Views/SettingsPages/SubPages/Editor/CompatibilitySubSettingsView.xaml.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,11 @@ | ||
| ||
namespace WolvenKit.Views.SettingsPages.SubPages.Editor | ||
{ | ||
public partial class CompatibilitySubSettingsView | ||
{ | ||
public CompatibilitySubSettingsView() | ||
{ | ||
InitializeComponent(); | ||
} | ||
} | ||
} |
16 changes: 16 additions & 0 deletions
16
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<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" /> | ||
</Grid> | ||
|
||
</catel:UserControl> |
11 changes: 11 additions & 0 deletions
11
WolvenKit/Views/SettingsPages/SubPages/Editor/GeneralSubSettingsView.xaml.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,11 @@ | ||
| ||
namespace WolvenKit.Views.SettingsPages.SubPages.Editor | ||
{ | ||
public partial class GeneralSubSettingsView | ||
{ | ||
public GeneralSubSettingsView() | ||
{ | ||
InitializeComponent(); | ||
} | ||
} | ||
} |
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