From 485c75f06c9a55ea54106073b3e7741682d26110 Mon Sep 17 00:00:00 2001 From: Daniel Schick Date: Mon, 10 Apr 2023 10:42:20 +0200 Subject: [PATCH] Role-Editor: UI for Participant and User --- src/RoleEditor/App.config | 3 + src/RoleEditor/App.xaml | 9 ++ src/RoleEditor/App.xaml.cs | 17 ++++ src/RoleEditor/AssemblyInfo.cs | 10 +++ src/RoleEditor/MainWindow.xaml | 126 +++++++++++++++++++++++++++ src/RoleEditor/MainWindow.xaml.cs | 40 +++++++++ src/RoleEditor/Resources.Designer.cs | 63 ++++++++++++++ src/RoleEditor/Resources.resx | 101 +++++++++++++++++++++ src/RoleEditor/RoleEditor.csproj | 25 ++++++ src/RoleEditor/RoleEditor.sln | 25 ++++++ 10 files changed, 419 insertions(+) create mode 100644 src/RoleEditor/App.config create mode 100644 src/RoleEditor/App.xaml create mode 100644 src/RoleEditor/App.xaml.cs create mode 100644 src/RoleEditor/AssemblyInfo.cs create mode 100644 src/RoleEditor/MainWindow.xaml create mode 100644 src/RoleEditor/MainWindow.xaml.cs create mode 100644 src/RoleEditor/Resources.Designer.cs create mode 100644 src/RoleEditor/Resources.resx create mode 100644 src/RoleEditor/RoleEditor.csproj create mode 100644 src/RoleEditor/RoleEditor.sln diff --git a/src/RoleEditor/App.config b/src/RoleEditor/App.config new file mode 100644 index 0000000..49cc43e --- /dev/null +++ b/src/RoleEditor/App.config @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/src/RoleEditor/App.xaml b/src/RoleEditor/App.xaml new file mode 100644 index 0000000..7f5413e --- /dev/null +++ b/src/RoleEditor/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/src/RoleEditor/App.xaml.cs b/src/RoleEditor/App.xaml.cs new file mode 100644 index 0000000..6d8bf95 --- /dev/null +++ b/src/RoleEditor/App.xaml.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Configuration; +using System.Data; +using System.Linq; +using System.Threading.Tasks; +using System.Windows; + +namespace RoleEditor +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/src/RoleEditor/AssemblyInfo.cs b/src/RoleEditor/AssemblyInfo.cs new file mode 100644 index 0000000..8b5504e --- /dev/null +++ b/src/RoleEditor/AssemblyInfo.cs @@ -0,0 +1,10 @@ +using System.Windows; + +[assembly: ThemeInfo( + ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located + //(used if a resource is not found in the page, + // or application resource dictionaries) + ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located + //(used if a resource is not found in the page, + // app, or any theme specific resource dictionaries) +)] diff --git a/src/RoleEditor/MainWindow.xaml b/src/RoleEditor/MainWindow.xaml new file mode 100644 index 0000000..ec3d72d --- /dev/null +++ b/src/RoleEditor/MainWindow.xaml @@ -0,0 +1,126 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +