Add Windows/

This commit is contained in:
2023-02-21 18:00:29 +01:00
parent 71022c7fbf
commit c90e986b52
12 changed files with 25 additions and 25 deletions

View File

@ -2,7 +2,7 @@
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:WGneu"
StartupUri="MainWindow.xaml"
StartupUri="Windows\MainWindow.xaml"
xmlns:ui="http://schemas.modernwpf.com/2019">
<Application.Resources>
<!--<ResourceDictionary>

View File

@ -7,33 +7,33 @@
</ApplicationDefinition>
</ItemGroup>
<ItemGroup>
<Compile Update="BankDetailsWindow.xaml.cs">
<Compile Update="Windows\BankDetailsWindow.xaml.cs">
<SubType>Code</SubType>
</Compile>
<Compile Update="MemberAddWindow.xaml.cs">
<Compile Update="Windows\MemberAddWindow.xaml.cs">
<SubType>Code</SubType>
</Compile>
<Compile Update="MemberEditWindow.xaml.cs">
<Compile Update="Windows\MemberEditWindow.xaml.cs">
<SubType>Code</SubType>
</Compile>
<Compile Update="MemberListWindow.xaml.cs">
<Compile Update="Windows\MemberListWindow.xaml.cs">
<SubType>Code</SubType>
</Compile>
</ItemGroup>
<ItemGroup>
<Page Update="BankDetailsWindow.xaml">
<Page Update="Windows\BankDetailsWindow.xaml">
<SubType>Designer</SubType>
</Page>
<Page Update="MainWindow.xaml">
<Page Update="Windows\MainWindow.xaml">
<SubType>Designer</SubType>
</Page>
<Page Update="MemberAddWindow.xaml">
<Page Update="Windows\MemberAddWindow.xaml">
<SubType>Designer</SubType>
</Page>
<Page Update="MemberEditWindow.xaml">
<Page Update="Windows\MemberEditWindow.xaml">
<SubType>Designer</SubType>
</Page>
<Page Update="MemberListWindow.xaml">
<Page Update="Windows\MemberListWindow.xaml">
<SubType>Designer</SubType>
</Page>
</ItemGroup>

View File

@ -1,9 +1,9 @@
<Window x:Class="WGneu.BankDetailsWindow"
<Window x:Class="WGneu.Windows.BankDetailsWindow"
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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:WGneu"
xmlns:local="clr-namespace:WGneu.Windows"
mc:Ignorable="d"
Title="Bankverbindung" Height="295" Width="440" ResizeMode="NoResize" MinWidth="440" MinHeight="295">
<Grid>

View File

@ -14,7 +14,7 @@ using System.Windows.Shapes;
using WGneu.Models;
namespace WGneu
namespace WGneu.Windows
{
/// <summary>
/// Interaktionslogik für BankDetailsWindow.xaml

View File

@ -1,9 +1,9 @@
<Window x:Class="WGneu.MainWindow"
<Window x:Class="WGneu.Windows.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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:WGneu"
xmlns:local="clr-namespace:WGneu.Windows"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800" ResizeMode="CanResize" SizeToContent="Manual"
Loaded="Window_Loaded">

View File

@ -18,7 +18,7 @@ using System.Windows.Shapes;
using WGneu.Models;
namespace WGneu
namespace WGneu.Windows
{
/// <summary>
/// Interaction logic for MainWindow.xaml

View File

@ -1,9 +1,9 @@
<Window x:Class="WGneu.MemberAddWindow"
<Window x:Class="WGneu.Windows.MemberAddWindow"
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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:WGneu"
xmlns:local="clr-namespace:WGneu.Windows"
mc:Ignorable="d"
Title="Mitglied anlegen" Height="450" Width="800"
Loaded="Window_Loaded">

View File

@ -14,7 +14,7 @@ using System.Windows.Shapes;
using WGneu.Models;
namespace WGneu
namespace WGneu.Windows
{
/// <summary>
/// Interaction logic for MemberAddWindow.xaml

View File

@ -1,9 +1,9 @@
<Window x:Class="WGneu.MemberEditWindow"
<Window x:Class="WGneu.Windows.MemberEditWindow"
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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:WGneu"
xmlns:local="clr-namespace:WGneu.Windows"
mc:Ignorable="d"
Title="MemberEditWindow" Height="450" Width="800"
Loaded="Window_Loaded">

View File

@ -15,7 +15,7 @@ using System.Windows.Shapes;
using WGneu.Models;
namespace WGneu
namespace WGneu.Windows
{
/// <summary>
/// Interaction logic for MemberEditWindow.xaml

View File

@ -1,9 +1,9 @@
<Window x:Class="WGneu.MemberListWindow"
<Window x:Class="WGneu.Windows.MemberListWindow"
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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:WGneu"
xmlns:local="clr-namespace:WGneu.Windows"
xmlns:ui="http://schemas.modernwpf.com/2019"
ui:WindowHelper.UseModernWindowStyle="True"
mc:Ignorable="d"

View File

@ -16,7 +16,7 @@ using System.Windows.Shapes;
using WGneu.Models;
namespace WGneu
namespace WGneu.Windows
{
/// <summary>
/// Interaktionslogik für Window1.xaml