123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- using System.Drawing;
- using System.Windows.Forms;
- namespace FastReport.Forms
- {
- partial class ShortcutEditorForm
- {
- /// <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()
- {
- 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;
- }
- }
|