using System.Drawing; using System.Windows.Forms; namespace FastReport.Forms { partial class ShortcutEditorForm { /// /// 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() { this.lblKeybinding = new Label(); this.lblNeedInput = new Label(); this.SuspendLayout(); // // lblKeybinding // this.lblKeybinding.Name = "lblKeybinding"; this.lblKeybinding.BackColor = Color.LightGray; this.lblKeybinding.Size = new System.Drawing.Size(357, 24); this.lblKeybinding.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.lblKeybinding.Location = new System.Drawing.Point(12, 36); // // btnCancel // this.btnCancel.Location = new Point(299, 70); this.btnCancel.Size = new Size(70, 22); // // btnOk // this.btnOk.Location = new Point(219, 70); this.btnOk.Size = new Size(70, 22); // // lblNeedInput // this.lblNeedInput.Name = "lblNeedInput"; this.lblNeedInput.AutoSize = true; this.lblNeedInput.Location = new System.Drawing.Point(12, 12); this.lblNeedInput.Text = "Set the keyboard shortcut:"; // // ShortcutEditorForm // this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; this.Controls.Add(lblKeybinding); this.Controls.Add(lblNeedInput); this.ClientSize = new System.Drawing.Size(380, 105); this.Text = "Keyboard shortcut editor"; this.ResumeLayout(false); } #endregion private Label lblKeybinding; private Label lblNeedInput; } }