diff --git a/Form1.Designer.cs b/Form1.Designer.cs new file mode 100644 index 0000000..cd02a09 --- /dev/null +++ b/Form1.Designer.cs @@ -0,0 +1,50 @@ +namespace Juicebox +{ + partial class JuiceBox + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + SuspendLayout(); + // + // JuiceBox + // + AllowDrop = true; + AutoScaleDimensions = new SizeF(11F, 28F); + AutoScaleMode = AutoScaleMode.Font; + ClientSize = new Size(1100, 630); + Font = new Font("Segoe UI", 12F, FontStyle.Regular, GraphicsUnit.Point, 0); + HelpButton = true; + Margin = new Padding(4, 4, 4, 4); + Name = "JuiceBox"; + Text = "JuiceBox"; + Load += Form1_Load; + ResumeLayout(false); + } + + #endregion + } +} diff --git a/Form1.cs b/Form1.cs new file mode 100644 index 0000000..ef664e3 --- /dev/null +++ b/Form1.cs @@ -0,0 +1,15 @@ +namespace Juicebox +{ + public partial class JuiceBox : Form + { + public JuiceBox() + { + InitializeComponent(); + } + + private void Form1_Load(object sender, EventArgs e) + { + + } + } +} diff --git a/Form1.resx b/Form1.resx new file mode 100644 index 0000000..8b2ff64 --- /dev/null +++ b/Form1.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/Juicebox.csproj b/Juicebox.csproj new file mode 100644 index 0000000..5151c0a --- /dev/null +++ b/Juicebox.csproj @@ -0,0 +1,11 @@ + + + + WinExe + net10.0-windows + enable + true + enable + + + \ No newline at end of file diff --git a/Juicebox.slnx b/Juicebox.slnx new file mode 100644 index 0000000..9a2aaea --- /dev/null +++ b/Juicebox.slnx @@ -0,0 +1,3 @@ + + + diff --git a/Program.cs b/Program.cs new file mode 100644 index 0000000..dada1c6 --- /dev/null +++ b/Program.cs @@ -0,0 +1,18 @@ +namespace Juicebox +{ + internal static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + // To customize application configuration such as set high DPI settings or default font, + // see https://aka.ms/applicationconfiguration. + ApplicationConfiguration.Initialize(); + Application.SetColorMode(SystemColorMode.System); + Application.Run(new JuiceBox()); + } + } +} \ No newline at end of file