namespace Click_to_Call_Tray { partial class HotkeyRecorderForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; private System.Windows.Forms.Label labelInstruction; private System.Windows.Forms.TextBox textBoxHotkey; private System.Windows.Forms.Button buttonOk; /// /// 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() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(HotkeyRecorderForm)); labelInstruction = new Label(); textBoxHotkey = new TextBox(); buttonOk = new Button(); SuspendLayout(); // // labelInstruction // labelInstruction.AutoSize = true; labelInstruction.Location = new Point(18, 17); labelInstruction.Margin = new Padding(4, 0, 4, 0); labelInstruction.Name = "labelInstruction"; labelInstruction.Size = new Size(229, 15); labelInstruction.TabIndex = 0; labelInstruction.Text = "Press the keys you want to set as a hotkey:"; // // textBoxHotkey // textBoxHotkey.Location = new Point(18, 46); textBoxHotkey.Margin = new Padding(4, 3, 4, 3); textBoxHotkey.Name = "textBoxHotkey"; textBoxHotkey.ReadOnly = true; textBoxHotkey.Size = new Size(291, 23); textBoxHotkey.TabIndex = 1; // // buttonOk // buttonOk.Location = new Point(315, 44); buttonOk.Margin = new Padding(4, 3, 4, 3); buttonOk.Name = "buttonOk"; buttonOk.Size = new Size(88, 27); buttonOk.TabIndex = 2; buttonOk.Text = "OK"; buttonOk.UseVisualStyleBackColor = true; buttonOk.Click += ButtonOk_Click; // // HotkeyRecorderForm // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(420, 92); Controls.Add(labelInstruction); Controls.Add(textBoxHotkey); Controls.Add(buttonOk); Icon = (Icon)resources.GetObject("$this.Icon"); Margin = new Padding(4, 3, 4, 3); Name = "HotkeyRecorderForm"; Text = "Hotkey Recorder"; ResumeLayout(false); PerformLayout(); } #endregion } }