From 54dbc82bde2a18faf1b815202d7f55a6ecedcaf2 Mon Sep 17 00:00:00 2001 From: Kalakoi Date: Thu, 26 Jun 2025 15:26:42 -0400 Subject: [PATCH] Creating more streamlined window for scalability. --- osrs-toolbox/Controls/ToolboxWindow.xaml | 12 +++++++++ osrs-toolbox/Controls/ToolboxWindow.xaml.cs | 28 +++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 osrs-toolbox/Controls/ToolboxWindow.xaml create mode 100644 osrs-toolbox/Controls/ToolboxWindow.xaml.cs diff --git a/osrs-toolbox/Controls/ToolboxWindow.xaml b/osrs-toolbox/Controls/ToolboxWindow.xaml new file mode 100644 index 0000000..6613326 --- /dev/null +++ b/osrs-toolbox/Controls/ToolboxWindow.xaml @@ -0,0 +1,12 @@ + + + + + diff --git a/osrs-toolbox/Controls/ToolboxWindow.xaml.cs b/osrs-toolbox/Controls/ToolboxWindow.xaml.cs new file mode 100644 index 0000000..1f9961c --- /dev/null +++ b/osrs-toolbox/Controls/ToolboxWindow.xaml.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +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 osrs_toolbox +{ + /// + /// Interaction logic for ToolboxWindow.xaml + /// + public partial class ToolboxWindow : UserControl + { + public ToolboxWindow() + { + InitializeComponent(); + } + } +}