Rename to Elwig

This commit is contained in:
2023-03-18 10:57:59 +01:00
parent c27b7b8846
commit c8ffe57ff1
45 changed files with 72 additions and 68 deletions

View File

@ -1,9 +1,9 @@
<Window x:Class="WGneu.Windows.ContractListWindow"
<Window x:Class="Elwig.Windows.ContractListWindow"
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.Windows"
xmlns:local="clr-namespace:Elwig.Windows"
mc:Ignorable="d"
Title="Flächenbindungen" Height="450" Width="800">
<Grid>

View File

@ -3,10 +3,10 @@ using System.Collections.Generic;
using System.Linq;
using System.Windows;
using System.Windows.Controls;
using WGneu.Helpers;
using WGneu.Models;
using Elwig.Helpers;
using Elwig.Models;
namespace WGneu.Windows {
namespace Elwig.Windows {
public partial class ContractListWindow : Window {
private readonly AppDbContext Context = new();

View File

@ -1,9 +1,9 @@
<Window x:Class="WGneu.Windows.DeliveryReceptionWindow"
<Window x:Class="Elwig.Windows.DeliveryReceptionWindow"
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.Windows"
xmlns:local="clr-namespace:Elwig.Windows"
mc:Ignorable="d"
Title="Übernahme" Height="450" Width="800">
<Grid>

View File

@ -1,6 +1,6 @@
using System.Windows;
namespace WGneu.Windows {
namespace Elwig.Windows {
public partial class DeliveryReceptionWindow : Window {
public DeliveryReceptionWindow() {
InitializeComponent();

View File

@ -1,10 +1,10 @@
<Window x:Class="WGneu.Windows.DocumentViewerWindow"
<Window x:Class="Elwig.Windows.DocumentViewerWindow"
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:wv2="clr-namespace:Microsoft.Web.WebView2.Wpf;assembly=Microsoft.Web.WebView2.Wpf"
xmlns:local="clr-namespace:WGneu.Windows"
xmlns:local="clr-namespace:Elwig.Windows"
mc:Ignorable="d"
Closed="OnClosed"
Title="PDF Ansicht"

View File

@ -1,8 +1,8 @@
using System;
using System.Windows;
using WGneu.Helpers;
using Elwig.Helpers;
namespace WGneu.Windows {
namespace Elwig.Windows {
public partial class DocumentViewerWindow : Window {
private TempFile? PdfFile = null;

View File

@ -1,11 +1,11 @@
<Window x:Class="WGneu.Windows.MainWindow"
<Window x:Class="Elwig.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.Windows"
xmlns:local="clr-namespace:Elwig.Windows"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800" ResizeMode="CanResize" SizeToContent="Manual"
Title="Elwig" Height="450" Width="800" ResizeMode="CanResize" SizeToContent="Manual"
Loaded="Window_Loaded">
<Grid>
<Button x:Name="Button2" Content="Mitglieder" Margin="472,182,178,0" VerticalAlignment="Top" Click="Button2_Click"/>

View File

@ -7,10 +7,10 @@ using System.Runtime.Intrinsics.X86;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using WGneu.Documents;
using WGneu.Helpers;
using Elwig.Documents;
using Elwig.Helpers;
namespace WGneu.Windows {
namespace Elwig.Windows {
public partial class MainWindow : Window {
private readonly AppDbContext Context = new();

View File

@ -1,10 +1,10 @@
<Window x:Class="WGneu.Windows.MemberListWindow"
<Window x:Class="Elwig.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.Windows"
Title="Mitglieder" Height="600" Width="1200" MinHeight="600" MinWidth="1000"
xmlns:local="clr-namespace:Elwig.Windows"
Title="Mitglieder verwalten - Elwig" Height="600" Width="1200" MinHeight="600" MinWidth="1000"
Loaded="Window_Loaded">
<Window.Resources>
<Style TargetType="Label">

View File

@ -7,11 +7,11 @@ using System.Linq;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using WGneu.Helpers;
using WGneu.Models;
using Elwig.Helpers;
using Elwig.Models;
namespace WGneu.Windows {
namespace Elwig.Windows {
public partial class MemberListWindow : Window {
private bool IsEditing = false;
private bool IsCreating = false;