PropertiesDialog.Designer.cs 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. namespace DrawTools
  2. {
  3. partial class PropertiesDialog
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.label1 = new System.Windows.Forms.Label();
  29. this.lblColor = new System.Windows.Forms.Label();
  30. this.btnSelectColor = new System.Windows.Forms.Button();
  31. this.label2 = new System.Windows.Forms.Label();
  32. this.lblPenWidth = new System.Windows.Forms.Label();
  33. this.cmbPenWidth = new System.Windows.Forms.ComboBox();
  34. this.btnOK = new System.Windows.Forms.Button();
  35. this.btnCancel = new System.Windows.Forms.Button();
  36. this.SuspendLayout();
  37. //
  38. // label1
  39. //
  40. this.label1.AutoSize = true;
  41. this.label1.Location = new System.Drawing.Point(22, 26);
  42. this.label1.Name = "label1";
  43. this.label1.Size = new System.Drawing.Size(31, 13);
  44. this.label1.TabIndex = 0;
  45. this.label1.Text = "Color";
  46. //
  47. // lblColor
  48. //
  49. this.lblColor.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  50. this.lblColor.Location = new System.Drawing.Point(90, 21);
  51. this.lblColor.Name = "lblColor";
  52. this.lblColor.Size = new System.Drawing.Size(72, 24);
  53. this.lblColor.TabIndex = 1;
  54. this.lblColor.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  55. //
  56. // btnSelectColor
  57. //
  58. this.btnSelectColor.Location = new System.Drawing.Point(195, 19);
  59. this.btnSelectColor.Name = "btnSelectColor";
  60. this.btnSelectColor.Size = new System.Drawing.Size(33, 27);
  61. this.btnSelectColor.TabIndex = 2;
  62. this.btnSelectColor.Text = "...";
  63. this.btnSelectColor.UseVisualStyleBackColor = true;
  64. this.btnSelectColor.Click += new System.EventHandler(this.btnSelectColor_Click);
  65. //
  66. // label2
  67. //
  68. this.label2.AutoSize = true;
  69. this.label2.Location = new System.Drawing.Point(22, 66);
  70. this.label2.Name = "label2";
  71. this.label2.Size = new System.Drawing.Size(57, 13);
  72. this.label2.TabIndex = 3;
  73. this.label2.Text = "Pen Width";
  74. this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  75. //
  76. // lblPenWidth
  77. //
  78. this.lblPenWidth.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  79. this.lblPenWidth.Location = new System.Drawing.Point(90, 60);
  80. this.lblPenWidth.Name = "lblPenWidth";
  81. this.lblPenWidth.Size = new System.Drawing.Size(72, 24);
  82. this.lblPenWidth.TabIndex = 4;
  83. this.lblPenWidth.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  84. //
  85. // cmbPenWidth
  86. //
  87. this.cmbPenWidth.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  88. this.cmbPenWidth.FormattingEnabled = true;
  89. this.cmbPenWidth.Location = new System.Drawing.Point(195, 61);
  90. this.cmbPenWidth.Name = "cmbPenWidth";
  91. this.cmbPenWidth.Size = new System.Drawing.Size(71, 21);
  92. this.cmbPenWidth.TabIndex = 5;
  93. this.cmbPenWidth.SelectedIndexChanged += new System.EventHandler(this.cmbPenWidth_SelectedIndexChanged);
  94. //
  95. // btnOK
  96. //
  97. this.btnOK.Location = new System.Drawing.Point(39, 114);
  98. this.btnOK.Name = "btnOK";
  99. this.btnOK.Size = new System.Drawing.Size(80, 27);
  100. this.btnOK.TabIndex = 6;
  101. this.btnOK.Text = "OK";
  102. this.btnOK.UseVisualStyleBackColor = true;
  103. this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
  104. //
  105. // btnCancel
  106. //
  107. this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  108. this.btnCancel.Location = new System.Drawing.Point(175, 114);
  109. this.btnCancel.Name = "btnCancel";
  110. this.btnCancel.Size = new System.Drawing.Size(80, 27);
  111. this.btnCancel.TabIndex = 7;
  112. this.btnCancel.Text = "Cancel";
  113. this.btnCancel.UseVisualStyleBackColor = true;
  114. //
  115. // PropertiesDialog
  116. //
  117. this.AcceptButton = this.btnOK;
  118. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  119. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  120. this.CancelButton = this.btnCancel;
  121. this.ClientSize = new System.Drawing.Size(290, 156);
  122. this.Controls.Add(this.btnCancel);
  123. this.Controls.Add(this.btnOK);
  124. this.Controls.Add(this.cmbPenWidth);
  125. this.Controls.Add(this.lblPenWidth);
  126. this.Controls.Add(this.label2);
  127. this.Controls.Add(this.btnSelectColor);
  128. this.Controls.Add(this.lblColor);
  129. this.Controls.Add(this.label1);
  130. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
  131. this.MaximizeBox = false;
  132. this.MinimizeBox = false;
  133. this.Name = "PropertiesDialog";
  134. this.ShowIcon = false;
  135. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  136. this.Text = "Properties";
  137. this.Load += new System.EventHandler(this.PropertiesDialog_Load);
  138. this.ResumeLayout(false);
  139. this.PerformLayout();
  140. }
  141. #endregion
  142. private System.Windows.Forms.Label label1;
  143. private System.Windows.Forms.Label lblColor;
  144. private System.Windows.Forms.Button btnSelectColor;
  145. private System.Windows.Forms.Label label2;
  146. private System.Windows.Forms.Label lblPenWidth;
  147. private System.Windows.Forms.ComboBox cmbPenWidth;
  148. private System.Windows.Forms.Button btnOK;
  149. private System.Windows.Forms.Button btnCancel;
  150. }
  151. }