diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 0000000..1ff0c42
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1,63 @@
+###############################################################################
+# Set default behavior to automatically normalize line endings.
+###############################################################################
+* text=auto
+
+###############################################################################
+# Set default behavior for command prompt diff.
+#
+# This is need for earlier builds of msysgit that does not have it on by
+# default for csharp files.
+# Note: This is only used by command line
+###############################################################################
+#*.cs diff=csharp
+
+###############################################################################
+# Set the merge driver for project and solution files
+#
+# Merging from the command prompt will add diff markers to the files if there
+# are conflicts (Merging from VS is not affected by the settings below, in VS
+# the diff markers are never inserted). Diff markers may cause the following
+# file extensions to fail to load in VS. An alternative would be to treat
+# these files as binary and thus will always conflict and require user
+# intervention with every merge. To do so, just uncomment the entries below
+###############################################################################
+#*.sln merge=binary
+#*.csproj merge=binary
+#*.vbproj merge=binary
+#*.vcxproj merge=binary
+#*.vcproj merge=binary
+#*.dbproj merge=binary
+#*.fsproj merge=binary
+#*.lsproj merge=binary
+#*.wixproj merge=binary
+#*.modelproj merge=binary
+#*.sqlproj merge=binary
+#*.wwaproj merge=binary
+
+###############################################################################
+# behavior for image files
+#
+# image files are treated as binary by default.
+###############################################################################
+#*.jpg binary
+#*.png binary
+#*.gif binary
+
+###############################################################################
+# diff behavior for common document formats
+#
+# Convert binary document formats to text before diffing them. This feature
+# is only available from the command line. Turn it on by uncommenting the
+# entries below.
+###############################################################################
+#*.doc diff=astextplain
+#*.DOC diff=astextplain
+#*.docx diff=astextplain
+#*.DOCX diff=astextplain
+#*.dot diff=astextplain
+#*.DOT diff=astextplain
+#*.pdf diff=astextplain
+#*.PDF diff=astextplain
+#*.rtf diff=astextplain
+#*.RTF diff=astextplain
diff --git a/SimpleClickBot/SimpleClickBot.sln b/SimpleClickBot/SimpleClickBot.sln
new file mode 100644
index 0000000..e9cb84c
--- /dev/null
+++ b/SimpleClickBot/SimpleClickBot.sln
@@ -0,0 +1,22 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio 15
+VisualStudioVersion = 15.0.26430.16
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimpleClickBot", "SimpleClickBot\SimpleClickBot.csproj", "{ADA26A8D-028B-4634-88AF-53E67D7A561D}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {ADA26A8D-028B-4634-88AF-53E67D7A561D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {ADA26A8D-028B-4634-88AF-53E67D7A561D}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {ADA26A8D-028B-4634-88AF-53E67D7A561D}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {ADA26A8D-028B-4634-88AF-53E67D7A561D}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+EndGlobal
diff --git a/SimpleClickBot/SimpleClickBot/App.config b/SimpleClickBot/SimpleClickBot/App.config
new file mode 100644
index 0000000..21e96f1
--- /dev/null
+++ b/SimpleClickBot/SimpleClickBot/App.config
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+
+ A
+
+
+
+
\ No newline at end of file
diff --git a/SimpleClickBot/SimpleClickBot/App.xaml b/SimpleClickBot/SimpleClickBot/App.xaml
new file mode 100644
index 0000000..f9d6c2d
--- /dev/null
+++ b/SimpleClickBot/SimpleClickBot/App.xaml
@@ -0,0 +1,9 @@
+
+
+
+
+
diff --git a/SimpleClickBot/SimpleClickBot/App.xaml.cs b/SimpleClickBot/SimpleClickBot/App.xaml.cs
new file mode 100644
index 0000000..2df756f
--- /dev/null
+++ b/SimpleClickBot/SimpleClickBot/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 SimpleClickBot
+{
+ ///
+ /// Interaktionslogik für "App.xaml"
+ ///
+ public partial class App : Application
+ {
+ }
+}
diff --git a/SimpleClickBot/SimpleClickBot/MainWindow.xaml b/SimpleClickBot/SimpleClickBot/MainWindow.xaml
new file mode 100644
index 0000000..d76e9a8
--- /dev/null
+++ b/SimpleClickBot/SimpleClickBot/MainWindow.xaml
@@ -0,0 +1,19 @@
+
+
+
diff --git a/SimpleClickBot/SimpleClickBot/MainWindow.xaml.cs b/SimpleClickBot/SimpleClickBot/MainWindow.xaml.cs
new file mode 100644
index 0000000..dab8b91
--- /dev/null
+++ b/SimpleClickBot/SimpleClickBot/MainWindow.xaml.cs
@@ -0,0 +1,89 @@
+using SimpleClickBot.Properties;
+using System;
+using System.Runtime.InteropServices;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Forms;
+using System.Windows.Input;
+using System.Windows.Interop;
+
+namespace SimpleClickBot
+{
+ ///
+ /// Interaktionslogik für MainWindow.xaml
+ ///
+ public partial class MainWindow : Window
+ {
+ public MainWindow()
+ {
+ InitializeComponent();
+ }
+
+ #region Listener
+
+ private void Window_Loaded(object sender, RoutedEventArgs e)
+ {
+ foreach (Keys key in Enum.GetValues(typeof(Keys)))
+ {
+ comboKey.Items.Add(key);
+ }
+
+ comboKey.SelectedItem = Settings.Default.SettingTriggerKey;
+ txtDelay.Text = Settings.Default.SettingDelay.ToString();
+
+ KeyListener.Setup();
+ ClickBot.Setup();
+ }
+
+ private void txtDelay_PreviewTextInput(object sender, TextCompositionEventArgs e)
+ {
+ if (!char.IsDigit(e.Text, e.Text.Length - 1))
+ e.Handled = true;
+ }
+
+ private void txtDelay_TextChanged(object sender, TextChangedEventArgs e)
+ {
+ if (txtDelay.Text != String.Empty)
+ {
+ Settings.Default.SettingDelay = int.Parse(((System.Windows.Controls.TextBox)sender).Text);
+ Settings.Default.Save();
+ }
+ }
+
+ private void comboKey_SelectionChanged(object sender, SelectionChangedEventArgs e)
+ {
+ Settings.Default.SettingTriggerKey = (Keys)comboKey.SelectedItem;
+ Settings.Default.Save();
+ }
+
+ private void btnClose_Click(object sender, RoutedEventArgs e)
+ {
+ Settings.Default.Save();
+ Environment.Exit(0);
+ }
+
+ private void Window_MouseDown(object sender, MouseButtonEventArgs e)
+ {
+ if (e.ChangedButton == MouseButton.Left)
+ {
+ ReleaseCapture();
+ SendMessage(new WindowInteropHelper(this).Handle, WM_NCLBUTTONDOWN, HT_CAPTION, 0);
+ }
+ }
+
+ #endregion
+
+ #region Dlls
+
+ private const int WM_NCLBUTTONDOWN = 0xA1;
+ private const int HT_CAPTION = 0x2;
+
+ [DllImport("user32.dll")]
+ public static extern int SendMessage(IntPtr hWnd, int Msg, int wParam, int lParam);
+ [DllImport("user32.dll")]
+ public static extern bool ReleaseCapture();
+
+ #endregion
+
+ }
+}
diff --git a/SimpleClickBot/SimpleClickBot/Properties/AssemblyInfo.cs b/SimpleClickBot/SimpleClickBot/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..047e195
--- /dev/null
+++ b/SimpleClickBot/SimpleClickBot/Properties/AssemblyInfo.cs
@@ -0,0 +1,53 @@
+using System.Reflection;
+using System.Runtime.InteropServices;
+using System.Windows;
+
+// Allgemeine Informationen über eine Assembly werden über die folgenden
+// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern,
+// die einer Assembly zugeordnet sind.
+[assembly: AssemblyTitle("SimpleClickBot")]
+[assembly: AssemblyDescription("Easy to use mouse Clicker/ClickBot for Windows")]
+[assembly: AssemblyConfiguration("GitHub: RaZorfalkon")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("SimpleClickBot")]
+[assembly: AssemblyCopyright("Copyright © 2017")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Durch Festlegen von ComVisible auf FALSE werden die Typen in dieser Assembly
+// für COM-Komponenten unsichtbar. Wenn Sie auf einen Typ in dieser Assembly von
+// COM aus zugreifen müssen, sollten Sie das ComVisible-Attribut für diesen Typ auf "True" festlegen.
+[assembly: ComVisible(false)]
+
+//Um mit dem Erstellen lokalisierbarer Anwendungen zu beginnen, legen Sie
+//ImCodeVerwendeteKultur in der .csproj-Datei
+//in einer fest. Wenn Sie in den Quelldateien beispielsweise Deutsch
+//(Deutschland) verwenden, legen Sie auf \"de-DE\" fest. Heben Sie dann die Auskommentierung
+//des nachstehenden NeutralResourceLanguage-Attributs auf. Aktualisieren Sie "en-US" in der nachstehenden Zeile,
+//sodass es mit der UICulture-Einstellung in der Projektdatei übereinstimmt.
+
+//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
+
+
+[assembly: ThemeInfo(
+ ResourceDictionaryLocation.None, //Speicherort der designspezifischen Ressourcenwörterbücher
+ //(wird verwendet, wenn eine Ressource auf der Seite nicht gefunden wird,
+ // oder in den Anwendungsressourcen-Wörterbüchern nicht gefunden werden kann.)
+ ResourceDictionaryLocation.SourceAssembly //Speicherort des generischen Ressourcenwörterbuchs
+ //(wird verwendet, wenn eine Ressource auf der Seite nicht gefunden wird,
+ // designspezifischen Ressourcenwörterbuch nicht gefunden werden kann.)
+)]
+
+
+// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten:
+//
+// Hauptversion
+// Nebenversion
+// Buildnummer
+// Revision
+//
+// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden,
+// übernehmen, indem Sie "*" eingeben:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0")]
+[assembly: AssemblyFileVersion("1.0")]
diff --git a/SimpleClickBot/SimpleClickBot/Properties/Resources.Designer.cs b/SimpleClickBot/SimpleClickBot/Properties/Resources.Designer.cs
new file mode 100644
index 0000000..3d7bb37
--- /dev/null
+++ b/SimpleClickBot/SimpleClickBot/Properties/Resources.Designer.cs
@@ -0,0 +1,71 @@
+//------------------------------------------------------------------------------
+//
+// Dieser Code wurde von einem Tool generiert.
+// Laufzeitversion: 4.0.30319.42000
+//
+// Änderungen an dieser Datei können fehlerhaftes Verhalten verursachen und gehen verloren, wenn
+// der Code neu generiert wird.
+//
+//------------------------------------------------------------------------------
+
+namespace SimpleClickBot.Properties
+{
+
+
+ ///
+ /// Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw.
+ ///
+ // Diese Klasse wurde von der StronglyTypedResourceBuilder-Klasse
+ // über ein Tool wie ResGen oder Visual Studio automatisch generiert.
+ // Um einen Member hinzuzufügen oder zu entfernen, bearbeiten Sie die .ResX-Datei und führen dann ResGen
+ // mit der Option /str erneut aus, oder erstellen Sie Ihr VS-Projekt neu.
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ internal class Resources
+ {
+
+ private static global::System.Resources.ResourceManager resourceMan;
+
+ private static global::System.Globalization.CultureInfo resourceCulture;
+
+ [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
+ internal Resources()
+ {
+ }
+
+ ///
+ /// Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Resources.ResourceManager ResourceManager
+ {
+ get
+ {
+ if ((resourceMan == null))
+ {
+ global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("SimpleClickBot.Properties.Resources", typeof(Resources).Assembly);
+ resourceMan = temp;
+ }
+ return resourceMan;
+ }
+ }
+
+ ///
+ /// Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle
+ /// Ressourcenlookups, die diese stark typisierte Ressourcenklasse verwenden.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Globalization.CultureInfo Culture
+ {
+ get
+ {
+ return resourceCulture;
+ }
+ set
+ {
+ resourceCulture = value;
+ }
+ }
+ }
+}
diff --git a/SimpleClickBot/SimpleClickBot/Properties/Resources.resx b/SimpleClickBot/SimpleClickBot/Properties/Resources.resx
new file mode 100644
index 0000000..af7dbeb
--- /dev/null
+++ b/SimpleClickBot/SimpleClickBot/Properties/Resources.resx
@@ -0,0 +1,117 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/SimpleClickBot/SimpleClickBot/Properties/Settings.Designer.cs b/SimpleClickBot/SimpleClickBot/Properties/Settings.Designer.cs
new file mode 100644
index 0000000..c1e5308
--- /dev/null
+++ b/SimpleClickBot/SimpleClickBot/Properties/Settings.Designer.cs
@@ -0,0 +1,50 @@
+//------------------------------------------------------------------------------
+//
+// Dieser Code wurde von einem Tool generiert.
+// Laufzeitversion:4.0.30319.42000
+//
+// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
+// der Code erneut generiert wird.
+//
+//------------------------------------------------------------------------------
+
+namespace SimpleClickBot.Properties {
+
+
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.1.0.0")]
+ internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
+
+ private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
+
+ public static Settings Default {
+ get {
+ return defaultInstance;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("0")]
+ public int SettingDelay {
+ get {
+ return ((int)(this["SettingDelay"]));
+ }
+ set {
+ this["SettingDelay"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("A")]
+ public global::System.Windows.Forms.Keys SettingTriggerKey {
+ get {
+ return ((global::System.Windows.Forms.Keys)(this["SettingTriggerKey"]));
+ }
+ set {
+ this["SettingTriggerKey"] = value;
+ }
+ }
+ }
+}
diff --git a/SimpleClickBot/SimpleClickBot/Properties/Settings.settings b/SimpleClickBot/SimpleClickBot/Properties/Settings.settings
new file mode 100644
index 0000000..1ec6413
--- /dev/null
+++ b/SimpleClickBot/SimpleClickBot/Properties/Settings.settings
@@ -0,0 +1,12 @@
+
+
+
+
+
+ 0
+
+
+ A
+
+
+
\ No newline at end of file
diff --git a/SimpleClickBot/SimpleClickBot/SimpleClickBot.csproj b/SimpleClickBot/SimpleClickBot/SimpleClickBot.csproj
new file mode 100644
index 0000000..31f2f1a
--- /dev/null
+++ b/SimpleClickBot/SimpleClickBot/SimpleClickBot.csproj
@@ -0,0 +1,114 @@
+
+
+
+
+ Debug
+ AnyCPU
+ {ADA26A8D-028B-4634-88AF-53E67D7A561D}
+ WinExe
+ SimpleClickBot
+ SimpleClickBot
+ v4.5.2
+ 512
+ {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
+ 4
+ true
+
+
+ AnyCPU
+ true
+ full
+ false
+ bin\Debug\
+ DEBUG;TRACE
+ prompt
+ 4
+
+
+ AnyCPU
+ pdbonly
+ true
+ bin\Release\
+ TRACE
+ prompt
+ 4
+
+
+ ClickBotIcon.ico
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 4.0
+
+
+
+
+
+
+
+ MSBuild:Compile
+ Designer
+
+
+ App.xaml
+ Code
+
+
+
+
+
+
+ MainWindow.xaml
+
+
+ Code
+
+
+ True
+ True
+ Resources.resx
+
+
+ True
+ Settings.settings
+ True
+
+
+ ResXFileCodeGenerator
+ Resources.Designer.cs
+
+
+ SettingsSingleFileGenerator
+ Settings.Designer.cs
+
+
+
+
+
+
+
+ MSBuild:Compile
+ Designer
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file