ShortcutEditorForm.Designer.cs 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. using System.Drawing;
  2. using System.Windows.Forms;
  3. namespace FastReport.Forms
  4. {
  5. partial class ShortcutEditorForm
  6. {
  7. /// <summary>
  8. /// Required designer variable.
  9. /// </summary>
  10. private System.ComponentModel.IContainer components = null;
  11. /// <summary>
  12. /// Clean up any resources being used.
  13. /// </summary>
  14. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  15. protected override void Dispose(bool disposing)
  16. {
  17. if (disposing && (components != null))
  18. {
  19. components.Dispose();
  20. }
  21. base.Dispose(disposing);
  22. }
  23. #region Windows Form Designer generated code
  24. /// <summary>
  25. /// Required method for Designer support - do not modify
  26. /// the contents of this method with the code editor.
  27. /// </summary>
  28. private void InitializeComponent()
  29. {
  30. this.lblKeybinding = new Label();
  31. this.lblNeedInput = new Label();
  32. this.SuspendLayout();
  33. //
  34. // lblKeybinding
  35. //
  36. this.lblKeybinding.Name = "lblKeybinding";
  37. this.lblKeybinding.BackColor = Color.LightGray;
  38. this.lblKeybinding.Size = new System.Drawing.Size(357, 24);
  39. this.lblKeybinding.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  40. this.lblKeybinding.Location = new System.Drawing.Point(12, 36);
  41. //
  42. // btnCancel
  43. //
  44. this.btnCancel.Location = new Point(299, 70);
  45. this.btnCancel.Size = new Size(70, 22);
  46. //
  47. // btnOk
  48. //
  49. this.btnOk.Location = new Point(219, 70);
  50. this.btnOk.Size = new Size(70, 22);
  51. //
  52. // lblNeedInput
  53. //
  54. this.lblNeedInput.Name = "lblNeedInput";
  55. this.lblNeedInput.AutoSize = true;
  56. this.lblNeedInput.Location = new System.Drawing.Point(12, 12);
  57. this.lblNeedInput.Text = "Set the keyboard shortcut:";
  58. //
  59. // ShortcutEditorForm
  60. //
  61. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  62. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  63. this.Controls.Add(lblKeybinding);
  64. this.Controls.Add(lblNeedInput);
  65. this.ClientSize = new System.Drawing.Size(380, 105);
  66. this.Text = "Keyboard shortcut editor";
  67. this.ResumeLayout(false);
  68. }
  69. #endregion
  70. private Label lblKeybinding;
  71. private Label lblNeedInput;
  72. }
  73. }