mirror of
https://github.com/SabreTools/MPF.git
synced 2026-07-02 17:24:48 +00:00
Rename MPF.GUI to MPF.UI
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
using System.Windows;
|
||||
using MPF.Core.Data;
|
||||
using MPF.GUI.ViewModels;
|
||||
using MPF.UI.ViewModels;
|
||||
using MPF.Windows;
|
||||
|
||||
namespace MPF
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
using System.Windows.Controls;
|
||||
using MPF.GUI.ViewModels;
|
||||
using MPF.UI.ViewModels;
|
||||
|
||||
namespace MPF.UserControls
|
||||
{
|
||||
|
||||
@@ -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
|
||||
{
|
||||
|
||||
@@ -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
|
||||
{
|
||||
|
||||
@@ -10,7 +10,7 @@ using MPF.Windows;
|
||||
using RedumpLib.Web;
|
||||
using WPFCustomMessageBox;
|
||||
|
||||
namespace MPF.GUI.ViewModels
|
||||
namespace MPF.UI.ViewModels
|
||||
{
|
||||
public class OptionsViewModel
|
||||
{
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
using System;
|
||||
using MPF.GUI.ViewModels;
|
||||
using MPF.UI.Core.Windows;
|
||||
using MPF.UI.ViewModels;
|
||||
|
||||
namespace MPF.Windows
|
||||
{
|
||||
|
||||
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user