AddNewItemForm.Designer.cs 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. using System.Windows.Forms;
  2. namespace FastReport.Forms
  3. {
  4. partial class AddNewItemForm
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Windows Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.lvWizards = new ListView();
  30. this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  31. this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  32. this.SuspendLayout();
  33. //
  34. // btnOk
  35. //
  36. this.btnOk.Location = new System.Drawing.Point(248, 216);
  37. this.btnOk.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  38. this.btnOk.Text = "Add";
  39. this.btnOk.KeyUp += new System.Windows.Forms.KeyEventHandler(this.AddNewItemForm_KeyUp);
  40. //
  41. // btnCancel
  42. //
  43. this.btnCancel.Location = new System.Drawing.Point(328, 216);
  44. this.btnCancel.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  45. this.btnCancel.KeyUp += new System.Windows.Forms.KeyEventHandler(this.AddNewItemForm_KeyUp);
  46. //
  47. // lvWizards
  48. //
  49. this.lvWizards.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
  50. this.columnHeader1,
  51. this.columnHeader2});
  52. this.lvWizards.HideSelection = false;
  53. this.lvWizards.Location = new System.Drawing.Point(8, 8);
  54. this.lvWizards.MultiSelect = false;
  55. this.lvWizards.Name = "lvWizards";
  56. this.lvWizards.Size = new System.Drawing.Size(396, 196);
  57. this.lvWizards.TabIndex = 1;
  58. this.lvWizards.UseCompatibleStateImageBehavior = false;
  59. this.lvWizards.View = System.Windows.Forms.View.SmallIcon;
  60. this.lvWizards.SelectedIndexChanged += new System.EventHandler(this.lvWizards_SelectedIndexChanged);
  61. this.lvWizards.DoubleClick += new System.EventHandler(this.lvWizards_DoubleClick);
  62. this.lvWizards.KeyUp += new System.Windows.Forms.KeyEventHandler(this.AddNewItemForm_KeyUp);
  63. //
  64. // columnHeader1
  65. //
  66. this.columnHeader1.Width = 180;
  67. //
  68. // columnHeader2
  69. //
  70. this.columnHeader2.Width = 180;
  71. //
  72. // AddNewItemForm
  73. //
  74. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  75. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  76. this.ClientSize = new System.Drawing.Size(412, 250);
  77. this.Controls.Add(this.lvWizards);
  78. this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  79. this.Name = "AddNewItemForm";
  80. this.Text = "Add New Item";
  81. this.KeyUp += new System.Windows.Forms.KeyEventHandler(this.AddNewItemForm_KeyUp);
  82. this.Controls.SetChildIndex(this.btnOk, 0);
  83. this.Controls.SetChildIndex(this.btnCancel, 0);
  84. this.Controls.SetChildIndex(this.lvWizards, 0);
  85. this.ResumeLayout(false);
  86. }
  87. #endregion
  88. private ListView lvWizards;
  89. private System.Windows.Forms.ColumnHeader columnHeader1;
  90. private System.Windows.Forms.ColumnHeader columnHeader2;
  91. }
  92. }