Renamed settings view to LANCommanderSettingsView and moved views/viewmodels into correct folders
This commit is contained in:
parent
1668c908e5
commit
6893bf6793
4 changed files with 4 additions and 4 deletions
|
@ -131,7 +131,7 @@ namespace LANCommander.PlaynitePlugin
|
||||||
|
|
||||||
public override UserControl GetSettingsView(bool firstRunView)
|
public override UserControl GetSettingsView(bool firstRunView)
|
||||||
{
|
{
|
||||||
return new PlayniteSettingsView(this);
|
return new LANCommanderSettingsView(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
public System.Windows.Window ShowAuthenticationWindow()
|
public System.Windows.Window ShowAuthenticationWindow()
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<UserControl x:Class="LANCommander.PlaynitePlugin.PlayniteSettingsView"
|
<UserControl x:Class="LANCommander.PlaynitePlugin.LANCommanderSettingsView"
|
||||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
@ -17,12 +17,12 @@ using System.Windows.Shapes;
|
||||||
|
|
||||||
namespace LANCommander.PlaynitePlugin
|
namespace LANCommander.PlaynitePlugin
|
||||||
{
|
{
|
||||||
public partial class PlayniteSettingsView : UserControl
|
public partial class LANCommanderSettingsView : UserControl
|
||||||
{
|
{
|
||||||
private LANCommanderLibraryPlugin Plugin;
|
private LANCommanderLibraryPlugin Plugin;
|
||||||
private LANCommanderSettingsViewModel Settings;
|
private LANCommanderSettingsViewModel Settings;
|
||||||
|
|
||||||
public PlayniteSettingsView(LANCommanderLibraryPlugin plugin)
|
public LANCommanderSettingsView(LANCommanderLibraryPlugin plugin)
|
||||||
{
|
{
|
||||||
this.Plugin = plugin;
|
this.Plugin = plugin;
|
||||||
this.Settings = plugin.Settings;
|
this.Settings = plugin.Settings;
|
Loading…
Add table
Reference in a new issue