Rename MPF.GUI to MPF.UI

This commit is contained in:
Matt Nadareski
2022-04-11 12:01:16 -07:00
parent c4f0792c77
commit 30f8932039
9 changed files with 10 additions and 9 deletions

View File

@@ -49,6 +49,7 @@
- Make protection field user-editable
- Add warning to tooltip
- Create core UI library
- Rename MPF.GUI to MPF.UI
### 2.3 (2022-02-05)
- Start overhauling Redump information pulling, again

View File

@@ -1,6 +1,6 @@
using System.Windows;
using MPF.Core.Data;
using MPF.GUI.ViewModels;
using MPF.UI.ViewModels;
using MPF.Windows;
namespace MPF

View File

@@ -1,5 +1,5 @@
using System.Windows.Controls;
using MPF.GUI.ViewModels;
using MPF.UI.ViewModels;
namespace MPF.UserControls
{

View File

@@ -10,7 +10,7 @@ using System.Windows.Media;
using MPF.Core.Data;
using MPF.UserControls;
namespace MPF.GUI.ViewModels
namespace MPF.UI.ViewModels
{
public class LogViewModel
{

View File

@@ -16,7 +16,7 @@ using RedumpLib.Data;
using WPFCustomMessageBox;
using WinForms = System.Windows.Forms;
namespace MPF.GUI.ViewModels
namespace MPF.UI.ViewModels
{
public class MainViewModel
{

View File

@@ -10,7 +10,7 @@ using MPF.Windows;
using RedumpLib.Web;
using WPFCustomMessageBox;
namespace MPF.GUI.ViewModels
namespace MPF.UI.ViewModels
{
public class OptionsViewModel
{

View File

@@ -4,8 +4,8 @@
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:controls="clr-namespace:MPF.UserControls"
xmlns:viewModels="clr-namespace:MPF.GUI.ViewModels"
xmlns:coreWindows="clr-namespace:MPF.UI.Core.Windows;assembly=MPF.UI.Core"
xmlns:viewModels="clr-namespace:MPF.UI.ViewModels"
mc:Ignorable="d"
Title="Media Preservation Frontend" Width="600" WindowStyle="None"
WindowStartupLocation="CenterScreen" ResizeMode="CanMinimize" SizeToContent="Height"

View File

@@ -1,6 +1,6 @@
using System;
using MPF.GUI.ViewModels;
using MPF.UI.Core.Windows;
using MPF.UI.ViewModels;
namespace MPF.Windows
{

View File

@@ -1,5 +1,5 @@
using MPF.GUI.ViewModels;
using MPF.UI.Core.Windows;
using MPF.UI.Core.Windows;
using MPF.UI.ViewModels;
namespace MPF.Windows
{