Skip to content

Commit 338fdef

Browse files
committed
Moving the GUI project to GUI/WPF
1 parent 449d52d commit 338fdef

62 files changed

Lines changed: 141 additions & 144 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

GUI/App.xaml renamed to GUI/WPF/App.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
<Application x:Class="Upsilon.Apps.Passkey.GUI.App"
1+
<Application x:Class="Upsilon.Apps.Passkey.GUI.WPF.App"
22
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
33
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4-
xmlns:local="clr-namespace:Upsilon.Apps.Passkey.GUI"
4+
xmlns:local="clr-namespace:Upsilon.Apps.Passkey.GUI.WPF"
55
StartupUri="MainWindow.xaml">
66
<Application.Resources>
77
<ResourceDictionary>

GUI/App.xaml.cs renamed to GUI/WPF/App.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.Windows;
22

3-
namespace Upsilon.Apps.Passkey.GUI
3+
namespace Upsilon.Apps.Passkey.GUI.WPF
44
{
55
/// <summary>
66
/// Interaction logic for App.xaml
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using Upsilon.Apps.Passkey.Core.Utils;
22
using Upsilon.Apps.Passkey.Interfaces.Enums;
33

4-
namespace Upsilon.Apps.Passkey.GUI.Helper
4+
namespace Upsilon.Apps.Passkey.GUI.WPF.Helper
55
{
66
internal static class EnumHelper
77
{
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using System.Windows.Input;
44
using System.Windows.Interop;
55

6-
namespace Upsilon.Apps.Passkey.GUI.Helper
6+
namespace Upsilon.Apps.Passkey.GUI.WPF.Helper
77
{
88
public static class HotkeyHelper
99
{
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using Upsilon.Apps.Passkey.Interfaces.Models;
22

3-
namespace Upsilon.Apps.Passkey.GUI.Helper
3+
namespace Upsilon.Apps.Passkey.GUI.WPF.Helper
44
{
55
public static class IItemHelper
66
{
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using System.Windows.Controls;
44
using System.Windows.Input;
55

6-
namespace Upsilon.Apps.Passkey.GUI.Helper
6+
namespace Upsilon.Apps.Passkey.GUI.WPF.Helper
77
{
88
public static class NumericTextBoxHelper
99
{
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System.ComponentModel;
22
using System.Runtime.CompilerServices;
33

4-
namespace Upsilon.Apps.Passkey.GUI.Helper
4+
namespace Upsilon.Apps.Passkey.GUI.WPF.Helper
55
{
66
public static class PropertyHelper
77
{
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Windows.Controls;
33
using System.Windows.Input;
44

5-
namespace Upsilon.Apps.Passkey.GUI.Helper
5+
namespace Upsilon.Apps.Passkey.GUI.WPF.Helper
66
{
77
public static class WindowHelper
88
{
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
<Window xmlns:Controls="clr-namespace:Upsilon.Apps.Passkey.GUI.Views.Controls"
2-
x:Class="Upsilon.Apps.Passkey.GUI.MainWindow"
1+
<Window xmlns:Controls="clr-namespace:Upsilon.Apps.Passkey.GUI.WPF.Views.Controls"
2+
x:Class="Upsilon.Apps.Passkey.GUI.WPF.MainWindow"
33
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
44
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
55
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
66
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
7-
xmlns:local="clr-namespace:Upsilon.Apps.Passkey.GUI"
8-
xmlns:viewmodels="clr-namespace:Upsilon.Apps.Passkey.GUI.ViewModels"
7+
xmlns:local="clr-namespace:Upsilon.Apps.Passkey.GUI.WPF"
8+
xmlns:viewmodels="clr-namespace:Upsilon.Apps.Passkey.GUI.WPF.ViewModels"
99
d:DataContext="{d:DesignInstance Type=viewmodels:MainViewModel}"
1010
mc:Ignorable="d"
1111
Title="{Binding AppTitle}"

0 commit comments

Comments
 (0)