FrmInputDialog.Designer.cs 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. 
  2. namespace SheepSheep
  3. {
  4. partial class FrmInputDialog
  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.txtString = new System.Windows.Forms.TextBox();
  30. this.btnOK = new System.Windows.Forms.Button();
  31. this.btnCancel = new System.Windows.Forms.Button();
  32. this.SuspendLayout();
  33. //
  34. // txtString
  35. //
  36. this.txtString.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  37. this.txtString.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  38. this.txtString.Location = new System.Drawing.Point(12, 12);
  39. this.txtString.Multiline = true;
  40. this.txtString.Name = "txtString";
  41. this.txtString.Size = new System.Drawing.Size(273, 21);
  42. this.txtString.TabIndex = 0;
  43. this.txtString.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtString_KeyPress);
  44. //
  45. // btnOK
  46. //
  47. this.btnOK.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  48. this.btnOK.Location = new System.Drawing.Point(151, 42);
  49. this.btnOK.Name = "btnOK";
  50. this.btnOK.Size = new System.Drawing.Size(64, 23);
  51. this.btnOK.TabIndex = 1;
  52. this.btnOK.Text = "确定";
  53. this.btnOK.UseVisualStyleBackColor = true;
  54. this.btnOK.Click += new System.EventHandler(this.btnOk_Click);
  55. //
  56. // btnCancel
  57. //
  58. this.btnCancel.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  59. this.btnCancel.Location = new System.Drawing.Point(221, 42);
  60. this.btnCancel.Name = "btnCancel";
  61. this.btnCancel.Size = new System.Drawing.Size(64, 23);
  62. this.btnCancel.TabIndex = 2;
  63. this.btnCancel.Text = "取消";
  64. this.btnCancel.UseVisualStyleBackColor = true;
  65. this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
  66. //
  67. // FrmInputDialog
  68. //
  69. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  70. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  71. this.ClientSize = new System.Drawing.Size(298, 77);
  72. this.Controls.Add(this.btnCancel);
  73. this.Controls.Add(this.btnOK);
  74. this.Controls.Add(this.txtString);
  75. this.Name = "FrmInputDialog";
  76. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  77. this.Text = "Form2";
  78. this.ResumeLayout(false);
  79. this.PerformLayout();
  80. }
  81. #endregion
  82. private System.Windows.Forms.TextBox txtString;
  83. private System.Windows.Forms.Button btnOK;
  84. private System.Windows.Forms.Button btnCancel;
  85. }
  86. }