TextEdit.Designer.cs 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. namespace Core.StlMes.Client.Mcp.Control.Common
  2. {
  3. partial class TextEdit
  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.panel1 = new System.Windows.Forms.Panel();
  29. this.btnCancel = new Infragistics.Win.Misc.UltraButton();
  30. this.ultraButton1 = new Infragistics.Win.Misc.UltraButton();
  31. this.rtMain = new System.Windows.Forms.RichTextBox();
  32. this.panel1.SuspendLayout();
  33. this.SuspendLayout();
  34. //
  35. // panel1
  36. //
  37. this.panel1.Controls.Add(this.btnCancel);
  38. this.panel1.Controls.Add(this.ultraButton1);
  39. this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
  40. this.panel1.Location = new System.Drawing.Point(0, 343);
  41. this.panel1.Name = "panel1";
  42. this.panel1.Size = new System.Drawing.Size(643, 58);
  43. this.panel1.TabIndex = 0;
  44. //
  45. // btnCancel
  46. //
  47. this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  48. this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  49. this.btnCancel.Location = new System.Drawing.Point(546, 14);
  50. this.btnCancel.Name = "btnCancel";
  51. this.btnCancel.Size = new System.Drawing.Size(75, 32);
  52. this.btnCancel.TabIndex = 1;
  53. this.btnCancel.Text = "取消";
  54. //
  55. // ultraButton1
  56. //
  57. this.ultraButton1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  58. this.ultraButton1.DialogResult = System.Windows.Forms.DialogResult.OK;
  59. this.ultraButton1.Location = new System.Drawing.Point(453, 14);
  60. this.ultraButton1.Name = "ultraButton1";
  61. this.ultraButton1.Size = new System.Drawing.Size(75, 32);
  62. this.ultraButton1.TabIndex = 0;
  63. this.ultraButton1.Text = "确认";
  64. //
  65. // rtMain
  66. //
  67. this.rtMain.Dock = System.Windows.Forms.DockStyle.Fill;
  68. this.rtMain.Location = new System.Drawing.Point(0, 0);
  69. this.rtMain.Name = "rtMain";
  70. this.rtMain.Size = new System.Drawing.Size(643, 343);
  71. this.rtMain.TabIndex = 1;
  72. this.rtMain.Text = "";
  73. //
  74. // TextEdit
  75. //
  76. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  77. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  78. this.ClientSize = new System.Drawing.Size(643, 401);
  79. this.Controls.Add(this.rtMain);
  80. this.Controls.Add(this.panel1);
  81. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
  82. this.MaximizeBox = false;
  83. this.MinimizeBox = false;
  84. this.Name = "TextEdit";
  85. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  86. this.Text = "文本编辑";
  87. this.TopMost = true;
  88. this.panel1.ResumeLayout(false);
  89. this.ResumeLayout(false);
  90. }
  91. #endregion
  92. private System.Windows.Forms.Panel panel1;
  93. private Infragistics.Win.Misc.UltraButton ultraButton1;
  94. private Infragistics.Win.Misc.UltraButton btnCancel;
  95. private System.Windows.Forms.RichTextBox rtMain;
  96. }
  97. }