You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

ErrorDialog.Designer.cs 3.1 kB

15 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. namespace ClickForensics.Quartz.Manager
  2. {
  3. partial class ErrorDialog
  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.btnOk = new System.Windows.Forms.Button();
  29. this.lblMessage = new System.Windows.Forms.Label();
  30. this.txtLongMessage = new System.Windows.Forms.TextBox();
  31. this.SuspendLayout();
  32. //
  33. // btnOk
  34. //
  35. this.btnOk.Location = new System.Drawing.Point(168, 184);
  36. this.btnOk.Name = "btnOk";
  37. this.btnOk.Size = new System.Drawing.Size(75, 23);
  38. this.btnOk.TabIndex = 0;
  39. this.btnOk.Text = "OK";
  40. this.btnOk.UseVisualStyleBackColor = true;
  41. this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
  42. //
  43. // lblMessage
  44. //
  45. this.lblMessage.AutoSize = true;
  46. this.lblMessage.Location = new System.Drawing.Point(41, 44);
  47. this.lblMessage.Name = "lblMessage";
  48. this.lblMessage.Size = new System.Drawing.Size(29, 13);
  49. this.lblMessage.TabIndex = 1;
  50. this.lblMessage.Text = "Error";
  51. //
  52. // txtLongMessage
  53. //
  54. this.txtLongMessage.Location = new System.Drawing.Point(44, 72);
  55. this.txtLongMessage.Multiline = true;
  56. this.txtLongMessage.Name = "txtLongMessage";
  57. this.txtLongMessage.Size = new System.Drawing.Size(335, 96);
  58. this.txtLongMessage.TabIndex = 2;
  59. //
  60. // ErrorDialog
  61. //
  62. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  63. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  64. this.ClientSize = new System.Drawing.Size(437, 266);
  65. this.Controls.Add(this.txtLongMessage);
  66. this.Controls.Add(this.lblMessage);
  67. this.Controls.Add(this.btnOk);
  68. this.Name = "ErrorDialog";
  69. this.Text = "ErrorDialog";
  70. this.ResumeLayout(false);
  71. this.PerformLayout();
  72. }
  73. #endregion
  74. private System.Windows.Forms.Button btnOk;
  75. private System.Windows.Forms.Label lblMessage;
  76. private System.Windows.Forms.TextBox txtLongMessage;
  77. }
  78. }