diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..a05b287 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,4 @@ +[*.cs] + +# IDE0011: Add braces +csharp_prefer_braces = when_multiline diff --git a/.gitignore b/.gitignore index 27ae6f1..2f72ce3 100644 --- a/.gitignore +++ b/.gitignore @@ -373,3 +373,6 @@ FodyWeavers.xsd # Local History for Visual Studio Code .history/ +# Ignore testing board +TestingBoard/ + diff --git a/PDGServer_WPF/App.xaml b/PDGServer_WPF/App.xaml new file mode 100644 index 0000000..7124177 --- /dev/null +++ b/PDGServer_WPF/App.xaml @@ -0,0 +1,6 @@ + + diff --git a/PDGServer_WPF/App.xaml.cs b/PDGServer_WPF/App.xaml.cs new file mode 100644 index 0000000..c866abb --- /dev/null +++ b/PDGServer_WPF/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 RBG_Server +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/PDGServer_WPF/AssemblyInfo.cs b/PDGServer_WPF/AssemblyInfo.cs new file mode 100644 index 0000000..8b5504e --- /dev/null +++ b/PDGServer_WPF/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/PDGServer_WPF/MainWindow.xaml b/PDGServer_WPF/MainWindow.xaml new file mode 100644 index 0000000..bc7a7da --- /dev/null +++ b/PDGServer_WPF/MainWindow.xaml @@ -0,0 +1,56 @@ + + + + + + + + + + + + + +