Skip to content

Commit ccb794d

Browse files
committed
Move dialogs
1 parent 8217dd9 commit ccb794d

File tree

7 files changed

+10
-11
lines changed

7 files changed

+10
-11
lines changed

Yugen.Mosaic.Uwp/Services/WhatsNewDisplayService.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
using System;
44
using System.Threading.Tasks;
55
using Windows.System;
6-
using Yugen.Mosaic.Uwp.Controls;
76
using Yugen.Mosaic.Uwp.Interfaces;
7+
using Yugen.Mosaic.Uwp.Views.Dialogs;
88

99
namespace Yugen.Mosaic.Uwp.Services
1010
{

Yugen.Mosaic.Uwp/ViewModels/MainViewModel.cs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
using Microsoft.AppCenter.Crashes;
22
using Microsoft.Toolkit.Mvvm.Input;
33
using Microsoft.Toolkit.Uwp;
4-
using Microsoft.UI.Xaml.Controls;
54
using SixLabors.ImageSharp;
65
using SixLabors.ImageSharp.PixelFormats;
76
using System;
@@ -17,11 +16,11 @@
1716
using Windows.System;
1817
using Windows.UI.Xaml;
1918
using Windows.UI.Xaml.Media.Imaging;
20-
using Yugen.Mosaic.Uwp.Controls;
2119
using Yugen.Mosaic.Uwp.Enums;
2220
using Yugen.Mosaic.Uwp.Helpers;
2321
using Yugen.Mosaic.Uwp.Interfaces;
2422
using Yugen.Mosaic.Uwp.Models;
23+
using Yugen.Mosaic.Uwp.Views.Dialogs;
2524
using Yugen.Toolkit.Standard.Core.Models;
2625
using Yugen.Toolkit.Standard.Extensions;
2726
using Yugen.Toolkit.Standard.Helpers;

Yugen.Mosaic.Uwp/Controls/SettingsDialog.xaml renamed to Yugen.Mosaic.Uwp/Views/Dialogs/SettingsDialog.xaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<dialogs:YugenDialog x:Class="Yugen.Mosaic.Uwp.Controls.SettingsDialog"
1+
<dialogs:YugenDialog x:Class="Yugen.Mosaic.Uwp.Views.Dialogs.SettingsDialog"
22
x:Uid="Settings"
33
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
44
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"

Yugen.Mosaic.Uwp/Controls/SettingsDialog.xaml.cs renamed to Yugen.Mosaic.Uwp/Views/Dialogs/SettingsDialog.xaml.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using Microsoft.Extensions.DependencyInjection;
22
using Yugen.Mosaic.Uwp.ViewModels;
33

4-
namespace Yugen.Mosaic.Uwp.Controls
4+
namespace Yugen.Mosaic.Uwp.Views.Dialogs
55
{
66
public sealed partial class SettingsDialog
77
{

Yugen.Mosaic.Uwp/Controls/WhatsNewDialog.xaml renamed to Yugen.Mosaic.Uwp/Views/Dialogs/WhatsNewDialog.xaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<dialogs:YugenDialog x:Class="Yugen.Mosaic.Uwp.Controls.WhatsNewDialog"
1+
<dialogs:YugenDialog x:Class="Yugen.Mosaic.Uwp.Views.Dialogs.WhatsNewDialog"
22
x:Uid="WhatsNew"
33
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
44
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"

Yugen.Mosaic.Uwp/Controls/WhatsNewDialog.xaml.cs renamed to Yugen.Mosaic.Uwp/Views/Dialogs/WhatsNewDialog.xaml.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using Windows.UI.Xaml;
33
using Yugen.Mosaic.Uwp.ViewModels;
44

5-
namespace Yugen.Mosaic.Uwp.Controls
5+
namespace Yugen.Mosaic.Uwp.Views.Dialogs
66
{
77
public sealed partial class WhatsNewDialog
88
{

Yugen.Mosaic.Uwp/Yugen.Mosaic.Uwp.csproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
<Compile Include="App.xaml.cs">
8181
<DependentUpon>App.xaml</DependentUpon>
8282
</Compile>
83-
<Compile Include="Controls\WhatsNewDialog.xaml.cs">
83+
<Compile Include="Views\Dialogs\WhatsNewDialog.xaml.cs">
8484
<DependentUpon>WhatsNewDialog.xaml</DependentUpon>
8585
</Compile>
8686
<Compile Include="Enums\FileFormat.cs" />
@@ -110,7 +110,7 @@
110110
<Compile Include="Services\SearchAndReplacePlainColorService.cs" />
111111
<Compile Include="Services\SearchAndReplaceRandomService.cs" />
112112
<Compile Include="Services\SearchAndReplaceService.cs" />
113-
<Compile Include="Controls\SettingsDialog.xaml.cs">
113+
<Compile Include="Views\Dialogs\SettingsDialog.xaml.cs">
114114
<DependentUpon>SettingsDialog.xaml</DependentUpon>
115115
</Compile>
116116
<Compile Include="ViewModels\MainViewModel.cs" />
@@ -183,15 +183,15 @@
183183
<Generator>MSBuild:Compile</Generator>
184184
<SubType>Designer</SubType>
185185
</ApplicationDefinition>
186-
<Page Include="Controls\WhatsNewDialog.xaml">
186+
<Page Include="Views\Dialogs\WhatsNewDialog.xaml">
187187
<SubType>Designer</SubType>
188188
<Generator>MSBuild:Compile</Generator>
189189
</Page>
190190
<Page Include="Views\MainPage.xaml">
191191
<SubType>Designer</SubType>
192192
<Generator>MSBuild:Compile</Generator>
193193
</Page>
194-
<Page Include="Controls\SettingsDialog.xaml">
194+
<Page Include="Views\Dialogs\SettingsDialog.xaml">
195195
<SubType>Designer</SubType>
196196
<Generator>MSBuild:Compile</Generator>
197197
</Page>

0 commit comments

Comments
 (0)