PageRenderTime 66ms CodeModel.GetById 29ms RepoModel.GetById 1ms app.codeStats 0ms

/WorldView/FormMessageBoxWithCheckBox.Designer.cs

#
C# | 105 lines | 73 code | 6 blank | 26 comment | 3 complexity | edb00cfe62aa2d12391ad3a965c36129 MD5 | raw file
  1. namespace MoreTerra
  2. {
  3. partial class FormMessageBoxWithCheckBox
  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.labelDialogText = new System.Windows.Forms.Label();
  29. this.checkBoxDialogItem = new System.Windows.Forms.CheckBox();
  30. this.buttonNo = new System.Windows.Forms.Button();
  31. this.buttonYes = new System.Windows.Forms.Button();
  32. this.SuspendLayout();
  33. //
  34. // labelDialogText
  35. //
  36. this.labelDialogText.Location = new System.Drawing.Point(22, 14);
  37. this.labelDialogText.Name = "labelDialogText";
  38. this.labelDialogText.Size = new System.Drawing.Size(317, 71);
  39. this.labelDialogText.TabIndex = 1;
  40. this.labelDialogText.Text = "labelWorldWarning";
  41. //
  42. // checkBoxDialogItem
  43. //
  44. this.checkBoxDialogItem.AutoSize = true;
  45. this.checkBoxDialogItem.Location = new System.Drawing.Point(25, 88);
  46. this.checkBoxDialogItem.Name = "checkBoxDialogItem";
  47. this.checkBoxDialogItem.Size = new System.Drawing.Size(189, 17);
  48. this.checkBoxDialogItem.TabIndex = 3;
  49. this.checkBoxDialogItem.Text = "Do not show for this version again.";
  50. this.checkBoxDialogItem.UseVisualStyleBackColor = true;
  51. //
  52. // buttonNo
  53. //
  54. this.buttonNo.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  55. this.buttonNo.Location = new System.Drawing.Point(183, 116);
  56. this.buttonNo.Name = "buttonNo";
  57. this.buttonNo.Size = new System.Drawing.Size(75, 23);
  58. this.buttonNo.TabIndex = 2;
  59. this.buttonNo.Text = "No";
  60. this.buttonNo.UseVisualStyleBackColor = true;
  61. this.buttonNo.Click += new System.EventHandler(this.buttonNo_Click);
  62. //
  63. // buttonYes
  64. //
  65. this.buttonYes.Location = new System.Drawing.Point(81, 116);
  66. this.buttonYes.Name = "buttonYes";
  67. this.buttonYes.Size = new System.Drawing.Size(75, 23);
  68. this.buttonYes.TabIndex = 0;
  69. this.buttonYes.Text = "Yes";
  70. this.buttonYes.UseVisualStyleBackColor = true;
  71. this.buttonYes.Click += new System.EventHandler(this.buttonYes_Click);
  72. //
  73. // FormMessageBoxWithCheckBox
  74. //
  75. this.AcceptButton = this.buttonYes;
  76. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  77. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  78. this.CancelButton = this.buttonNo;
  79. this.ClientSize = new System.Drawing.Size(351, 151);
  80. this.Controls.Add(this.buttonYes);
  81. this.Controls.Add(this.checkBoxDialogItem);
  82. this.Controls.Add(this.buttonNo);
  83. this.Controls.Add(this.labelDialogText);
  84. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
  85. this.MaximizeBox = false;
  86. this.MinimizeBox = false;
  87. this.Name = "FormMessageBoxWithCheckBox";
  88. this.Text = "MessageBoxWithCheckBox";
  89. this.Load += new System.EventHandler(this.FormMessageBoxWithCheckBox_Load);
  90. this.ResumeLayout(false);
  91. this.PerformLayout();
  92. }
  93. #endregion
  94. private System.Windows.Forms.Label labelDialogText;
  95. private System.Windows.Forms.CheckBox checkBoxDialogItem;
  96. private System.Windows.Forms.Button buttonNo;
  97. private System.Windows.Forms.Button buttonYes;
  98. }
  99. }