From bc441328a1b8c96cdb718007d438d2dc5b2bdf96 Mon Sep 17 00:00:00 2001 From: Kalakoi Date: Wed, 27 May 2026 12:29:27 -0400 Subject: [PATCH] Add project files. --- BambuPrinter.StatusLight.slnx | 3 +++ BambuPrinter.StatusLight/App.xaml | 9 +++++++ BambuPrinter.StatusLight/App.xaml.cs | 14 +++++++++++ BambuPrinter.StatusLight/AssemblyInfo.cs | 10 ++++++++ .../BambuPrinter.StatusLight.csproj | 11 +++++++++ BambuPrinter.StatusLight/MainWindow.xaml | 12 ++++++++++ BambuPrinter.StatusLight/MainWindow.xaml.cs | 24 +++++++++++++++++++ 7 files changed, 83 insertions(+) create mode 100644 BambuPrinter.StatusLight.slnx create mode 100644 BambuPrinter.StatusLight/App.xaml create mode 100644 BambuPrinter.StatusLight/App.xaml.cs create mode 100644 BambuPrinter.StatusLight/AssemblyInfo.cs create mode 100644 BambuPrinter.StatusLight/BambuPrinter.StatusLight.csproj create mode 100644 BambuPrinter.StatusLight/MainWindow.xaml create mode 100644 BambuPrinter.StatusLight/MainWindow.xaml.cs diff --git a/BambuPrinter.StatusLight.slnx b/BambuPrinter.StatusLight.slnx new file mode 100644 index 0000000..d44c03d --- /dev/null +++ b/BambuPrinter.StatusLight.slnx @@ -0,0 +1,3 @@ + + + diff --git a/BambuPrinter.StatusLight/App.xaml b/BambuPrinter.StatusLight/App.xaml new file mode 100644 index 0000000..1f8b00c --- /dev/null +++ b/BambuPrinter.StatusLight/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/BambuPrinter.StatusLight/App.xaml.cs b/BambuPrinter.StatusLight/App.xaml.cs new file mode 100644 index 0000000..63900b9 --- /dev/null +++ b/BambuPrinter.StatusLight/App.xaml.cs @@ -0,0 +1,14 @@ +using System.Configuration; +using System.Data; +using System.Windows; + +namespace BambuPrinter.StatusLight +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } + +} diff --git a/BambuPrinter.StatusLight/AssemblyInfo.cs b/BambuPrinter.StatusLight/AssemblyInfo.cs new file mode 100644 index 0000000..b0ec827 --- /dev/null +++ b/BambuPrinter.StatusLight/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/BambuPrinter.StatusLight/BambuPrinter.StatusLight.csproj b/BambuPrinter.StatusLight/BambuPrinter.StatusLight.csproj new file mode 100644 index 0000000..6e6420e --- /dev/null +++ b/BambuPrinter.StatusLight/BambuPrinter.StatusLight.csproj @@ -0,0 +1,11 @@ + + + + WinExe + net10.0-windows + enable + enable + true + + + diff --git a/BambuPrinter.StatusLight/MainWindow.xaml b/BambuPrinter.StatusLight/MainWindow.xaml new file mode 100644 index 0000000..4a72856 --- /dev/null +++ b/BambuPrinter.StatusLight/MainWindow.xaml @@ -0,0 +1,12 @@ + + + + + diff --git a/BambuPrinter.StatusLight/MainWindow.xaml.cs b/BambuPrinter.StatusLight/MainWindow.xaml.cs new file mode 100644 index 0000000..462476d --- /dev/null +++ b/BambuPrinter.StatusLight/MainWindow.xaml.cs @@ -0,0 +1,24 @@ +using System.Text; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Navigation; +using System.Windows.Shapes; + +namespace BambuPrinter.StatusLight +{ + /// + /// Interaction logic for MainWindow.xaml + /// + public partial class MainWindow : Window + { + public MainWindow() + { + InitializeComponent(); + } + } +} \ No newline at end of file