Skip to content

Commit

Permalink
move window class to MyWindows subfolder
Browse files Browse the repository at this point in the history
  • Loading branch information
Scighost committed Dec 25, 2023
1 parent 94f8c98 commit ee87572
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<!-- Copyright (c) Microsoft Corporation and Contributors. -->
<!-- Licensed under the MIT License. -->

<Window x:Class="Starward.MainWindow"
<Window x:Class="Starward.MyWindows.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:interactivity="using:Microsoft.Xaml.Interactivity"
xmlns:local="using:Starward"
xmlns:local="using:Starward.MyWindows"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:sh="using:Starward.Helpers"
xmlns:sp="using:Starward.Pages"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
// To learn more about WinUI, the WinUI project structure,
// and more about our project templates, see: http://aka.ms/winui-project-info.

namespace Starward;
namespace Starward.MyWindows;

/// <summary>
/// An empty window that can be used on its own or navigated to within a Frame.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Window x:Class="Starward.SystemTrayWindow"
<Window x:Class="Starward.MyWindows.SystemTrayWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="using:Starward"
xmlns:local="using:Starward.MyWindows"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
x:DefaultBindMode="OneWay"
mc:Ignorable="d">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
// To learn more about WinUI, the WinUI project structure,
// and more about our project templates, see: http://aka.ms/winui-project-info.

namespace Starward;
namespace Starward.MyWindows;

/// <summary>
/// An empty window that can be used on its own or navigated to within a Frame.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Window x:Class="Starward.TestUrlProtocolWindow"
<Window x:Class="Starward.MyWindows.TestUrlProtocolWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="using:Starward"
xmlns:local="using:Starward.MyWindows"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// To learn more about WinUI, the WinUI project structure,
// and more about our project templates, see: http://aka.ms/winui-project-info.

namespace Starward;
namespace Starward.MyWindows;

/// <summary>
/// An empty window that can be used on its own or navigated to within a Frame.
Expand Down
1 change: 1 addition & 0 deletions src/Starward/Program.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
global using Starward.Language;
global using Starward.MyWindows;
using Microsoft.Extensions.Configuration;
using Starward.Core;
using Starward.Models;
Expand Down

0 comments on commit ee87572

Please sign in to comment.