Renamed settings view to LANCommanderSettingsView and moved views/viewmodels into correct folders

dashboard
Pat Hartl 2023-01-14 15:19:14 -06:00
parent 1668c908e5
commit 6893bf6793
4 changed files with 4 additions and 4 deletions

View File

@ -131,7 +131,7 @@ namespace LANCommander.PlaynitePlugin
public override UserControl GetSettingsView(bool firstRunView)
{
return new PlayniteSettingsView(this);
return new LANCommanderSettingsView(this);
}
public System.Windows.Window ShowAuthenticationWindow()

View File

@ -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:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"

View File

@ -17,12 +17,12 @@ using System.Windows.Shapes;
namespace LANCommander.PlaynitePlugin
{
public partial class PlayniteSettingsView : UserControl
public partial class LANCommanderSettingsView : UserControl
{
private LANCommanderLibraryPlugin Plugin;
private LANCommanderSettingsViewModel Settings;
public PlayniteSettingsView(LANCommanderLibraryPlugin plugin)
public LANCommanderSettingsView(LANCommanderLibraryPlugin plugin)
{
this.Plugin = plugin;
this.Settings = plugin.Settings;