| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- namespace Core.LgMes.Client.LgJobMgt
- {
- partial class frmProcessAbnormity
- {
- /// <summary>
- /// 必需的设计器变量。
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// 清理所有正在使用的资源。
- /// </summary>
- /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows 窗体设计器生成的代码
- /// <summary>
- /// 设计器支持所需的方法 - 不要
- /// 使用代码编辑器修改此方法的内容。
- /// </summary>
- private void InitializeComponent()
- {
- this.txtMemo = new System.Windows.Forms.TextBox();
- this.butExit = new System.Windows.Forms.Button();
- this.butSave = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // txtMemo
- //
- this.txtMemo.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.txtMemo.Dock = System.Windows.Forms.DockStyle.Top;
- this.txtMemo.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtMemo.ForeColor = System.Drawing.Color.Red;
- this.txtMemo.Location = new System.Drawing.Point(0, 0);
- this.txtMemo.Multiline = true;
- this.txtMemo.Name = "txtMemo";
- this.txtMemo.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
- this.txtMemo.Size = new System.Drawing.Size(423, 103);
- this.txtMemo.TabIndex = 0;
- //
- // butExit
- //
- this.butExit.Location = new System.Drawing.Point(332, 109);
- this.butExit.Name = "butExit";
- this.butExit.Size = new System.Drawing.Size(74, 25);
- this.butExit.TabIndex = 1;
- this.butExit.Text = "取消";
- this.butExit.UseVisualStyleBackColor = true;
- this.butExit.Click += new System.EventHandler(this.butExit_Click);
- //
- // butSave
- //
- this.butSave.Location = new System.Drawing.Point(233, 109);
- this.butSave.Name = "butSave";
- this.butSave.Size = new System.Drawing.Size(74, 25);
- this.butSave.TabIndex = 2;
- this.butSave.Text = "保存";
- this.butSave.UseVisualStyleBackColor = true;
- this.butSave.Click += new System.EventHandler(this.butSave_Click);
- //
- // frmProcessAbnormity
- //
- this.BackColor = System.Drawing.Color.LightSteelBlue;
- this.ClientSize = new System.Drawing.Size(423, 139);
- this.Controls.Add(this.butSave);
- this.Controls.Add(this.butExit);
- this.Controls.Add(this.txtMemo);
- this.MaximizeBox = false;
- this.MinimizeBox = false;
- this.Name = "frmProcessAbnormity";
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
- this.Text = "异常信息";
- this.WindowState = System.Windows.Forms.FormWindowState.Normal;
- this.Load += new System.EventHandler(this.frmProcessAbnormity_Load);
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.TextBox txtMemo;
- private System.Windows.Forms.Button butExit;
- private System.Windows.Forms.Button butSave;
- }
- }
|