diff --git a/VAR.Toolbox/Images/Toolbox.png b/VAR.Toolbox/Images/Toolbox.png
new file mode 100644
index 0000000..d182b90
Binary files /dev/null and b/VAR.Toolbox/Images/Toolbox.png differ
diff --git a/VAR.Toolbox/Images/toolbox.svg b/VAR.Toolbox/Images/toolbox.svg
new file mode 100644
index 0000000..9541c7c
--- /dev/null
+++ b/VAR.Toolbox/Images/toolbox.svg
@@ -0,0 +1,235 @@
+
+
+
+
diff --git a/VAR.Toolbox/Toolbox.ico b/VAR.Toolbox/Toolbox.ico
new file mode 100644
index 0000000..ef066ec
Binary files /dev/null and b/VAR.Toolbox/Toolbox.ico differ
diff --git a/VAR.Toolbox/UI/FrmToolbox.Designer.cs b/VAR.Toolbox/UI/FrmToolbox.Designer.cs
index 8b36d75..238d7df 100644
--- a/VAR.Toolbox/UI/FrmToolbox.Designer.cs
+++ b/VAR.Toolbox/UI/FrmToolbox.Designer.cs
@@ -28,6 +28,7 @@
///
private void InitializeComponent()
{
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmToolbox));
this.btnBase64 = new System.Windows.Forms.Button();
this.btnProxyCmd = new System.Windows.Forms.Button();
this.btnWebcam = new System.Windows.Forms.Button();
@@ -108,6 +109,7 @@
this.Name = "FrmToolbox";
this.Text = "Toolbox";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmToolbox_FormClosing);
+ this.Load += new System.EventHandler(this.FrmToolbox_Load);
this.Resize += new System.EventHandler(this.FrmToolbox_Resize);
this.ResumeLayout(false);
diff --git a/VAR.Toolbox/UI/FrmToolbox.cs b/VAR.Toolbox/UI/FrmToolbox.cs
index 33dae1c..bcdcf38 100644
--- a/VAR.Toolbox/UI/FrmToolbox.cs
+++ b/VAR.Toolbox/UI/FrmToolbox.cs
@@ -1,6 +1,7 @@
using System;
using System.Collections.Generic;
using System.Windows.Forms;
+using System.Drawing;
namespace VAR.Toolbox.UI
{
@@ -11,6 +12,11 @@ namespace VAR.Toolbox.UI
InitializeComponent();
}
+ private void FrmToolbox_Load(object sender, EventArgs e)
+ {
+ Icon = Icon.ExtractAssociatedIcon(Application.ExecutablePath);
+ }
+
private void btnBase64_Click(object sender, EventArgs e)
{
CreateWindow(typeof(FrmBase64));
@@ -79,6 +85,6 @@ namespace VAR.Toolbox.UI
}
#endregion Window handling
-
+
}
}
diff --git a/VAR.Toolbox/VAR.Toolbox.csproj b/VAR.Toolbox/VAR.Toolbox.csproj
index 7fc6c52..8e3f552 100644
--- a/VAR.Toolbox/VAR.Toolbox.csproj
+++ b/VAR.Toolbox/VAR.Toolbox.csproj
@@ -36,6 +36,9 @@
app.manifest
+
+ Toolbox.ico
+
@@ -143,6 +146,11 @@
Settings.Designer.cs
+
+
+
+
+