Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/hakchi2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-01-15 00:02:00 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-01-15 00:02:00 +0300
commit56e2ae861ebe30866ad1acd95ee2e7cca0219e83 (patch)
tree9a91b8e3e09e3a4d4119027c8780888fb8af4e31 /SearchForm.Designer.cs
parentb95a2527632a20078c6f26f30b07c864119a0588 (diff)
Search by first letters
Diffstat (limited to 'SearchForm.Designer.cs')
-rw-r--r--SearchForm.Designer.cs64
1 files changed, 64 insertions, 0 deletions
diff --git a/SearchForm.Designer.cs b/SearchForm.Designer.cs
new file mode 100644
index 00000000..1161f95f
--- /dev/null
+++ b/SearchForm.Designer.cs
@@ -0,0 +1,64 @@
+namespace com.clusterrr.hakchi_gui
+{
+ partial class SearchForm
+ {
+ /// <summary>
+ /// Required designer variable.
+ /// </summary>
+ private System.ComponentModel.IContainer components = null;
+
+ /// <summary>
+ /// Clean up any resources being used.
+ /// </summary>
+ /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ /// <summary>
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ /// </summary>
+ private void InitializeComponent()
+ {
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SearchForm));
+ this.textBoxSearch = new System.Windows.Forms.TextBox();
+ this.SuspendLayout();
+ //
+ // textBoxSearch
+ //
+ resources.ApplyResources(this.textBoxSearch, "textBoxSearch");
+ this.textBoxSearch.Name = "textBoxSearch";
+ this.textBoxSearch.TextChanged += new System.EventHandler(this.textBoxSearch_TextChanged);
+ //
+ // SearchForm
+ //
+ resources.ApplyResources(this, "$this");
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.Controls.Add(this.textBoxSearch);
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
+ this.KeyPreview = true;
+ this.MaximizeBox = false;
+ this.MinimizeBox = false;
+ this.Name = "SearchForm";
+ this.Opacity = 0.75D;
+ this.TopMost = true;
+ this.Deactivate += new System.EventHandler(this.SearchForm_Deactivate);
+ this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.SearchForm_KeyDown);
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.TextBox textBoxSearch;
+ }
+} \ No newline at end of file