| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- namespace Core.StlMes.Client.Mcp.Control.Common
- {
- partial class TextEdit
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.panel1 = new System.Windows.Forms.Panel();
- this.btnCancel = new Infragistics.Win.Misc.UltraButton();
- this.ultraButton1 = new Infragistics.Win.Misc.UltraButton();
- this.rtMain = new System.Windows.Forms.RichTextBox();
- this.panel1.SuspendLayout();
- this.SuspendLayout();
- //
- // panel1
- //
- this.panel1.Controls.Add(this.btnCancel);
- this.panel1.Controls.Add(this.ultraButton1);
- this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.panel1.Location = new System.Drawing.Point(0, 343);
- this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(643, 58);
- this.panel1.TabIndex = 0;
- //
- // btnCancel
- //
- this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
- this.btnCancel.Location = new System.Drawing.Point(546, 14);
- this.btnCancel.Name = "btnCancel";
- this.btnCancel.Size = new System.Drawing.Size(75, 32);
- this.btnCancel.TabIndex = 1;
- this.btnCancel.Text = "取消";
- //
- // ultraButton1
- //
- this.ultraButton1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.ultraButton1.DialogResult = System.Windows.Forms.DialogResult.OK;
- this.ultraButton1.Location = new System.Drawing.Point(453, 14);
- this.ultraButton1.Name = "ultraButton1";
- this.ultraButton1.Size = new System.Drawing.Size(75, 32);
- this.ultraButton1.TabIndex = 0;
- this.ultraButton1.Text = "确认";
- //
- // rtMain
- //
- this.rtMain.Dock = System.Windows.Forms.DockStyle.Fill;
- this.rtMain.Location = new System.Drawing.Point(0, 0);
- this.rtMain.Name = "rtMain";
- this.rtMain.Size = new System.Drawing.Size(643, 343);
- this.rtMain.TabIndex = 1;
- this.rtMain.Text = "";
- //
- // TextEdit
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(643, 401);
- this.Controls.Add(this.rtMain);
- this.Controls.Add(this.panel1);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
- this.MaximizeBox = false;
- this.MinimizeBox = false;
- this.Name = "TextEdit";
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
- this.Text = "文本编辑";
- this.TopMost = true;
- this.panel1.ResumeLayout(false);
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.Panel panel1;
- private Infragistics.Win.Misc.UltraButton ultraButton1;
- private Infragistics.Win.Misc.UltraButton btnCancel;
- private System.Windows.Forms.RichTextBox rtMain;
- }
- }
|