Move LogOutput

This commit is contained in:
Matt Nadareski
2023-09-25 15:43:01 -04:00
parent 6b20aee320
commit ee4a7ab653
6 changed files with 8 additions and 7 deletions

View File

@@ -22,6 +22,7 @@
- Remove EnableLogFormatting
- Remove App references from LogViewModel
- Remove log formatting code
- Move LogOutput
### 2.6.3 (2023-08-15)

View File

@@ -1,9 +1,8 @@
<UserControl x:Class="MPF.UserControls.LogOutput"
<UserControl x:Class="MPF.UI.Core.UserControls.LogOutput"
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"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:MPF.UserControls"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800">
<Grid>

View File

@@ -1,7 +1,7 @@
using System.Windows.Controls;
using MPF.UI.ViewModels;
using MPF.UI.Core.ViewModels;
namespace MPF.UserControls
namespace MPF.UI.Core.UserControls
{
public partial class LogOutput : UserControl
{

View File

@@ -8,9 +8,9 @@ using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Media;
using MPF.Core.Data;
using MPF.UserControls;
using MPF.UI.Core.UserControls;
namespace MPF.UI.ViewModels
namespace MPF.UI.Core.ViewModels
{
public class LogViewModel
{

View File

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

View File

@@ -3,7 +3,7 @@
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
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:controls="clr-namespace:MPF.UI.Core.UserControls;assembly=MPF.UI.Core"
xmlns:coreWindows="clr-namespace:MPF.UI.Core.Windows;assembly=MPF.UI.Core"
xmlns:viewModels="clr-namespace:MPF.UI.ViewModels"
mc:Ignorable="d"