using System.ComponentModel; using System.Windows.Forms; using DevComponents.DotNetBar; namespace Cyberpipe { partial class FrmMarker { /// <summary> /// Required designer variable. /// </summary> private 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.labelMarkerContent = new System.Windows.Forms.Label(); this.textBoxMarkerContent = new System.Windows.Forms.TextBox(); this.buttonOK = new DevComponents.DotNetBar.ButtonX(); this.buttonCancel = new DevComponents.DotNetBar.ButtonX(); this.SuspendLayout(); // // labelMarkerContent // this.labelMarkerContent.AutoSize = true; this.labelMarkerContent.Location = new System.Drawing.Point(13, 13); this.labelMarkerContent.Name = "labelMarkerContent"; this.labelMarkerContent.Size = new System.Drawing.Size(65, 12); this.labelMarkerContent.TabIndex = 1; this.labelMarkerContent.Text = "标注内容:"; // // textBoxMarkerContent // this.textBoxMarkerContent.Location = new System.Drawing.Point(15, 28); this.textBoxMarkerContent.Multiline = true; this.textBoxMarkerContent.Name = "textBoxMarkerContent"; this.textBoxMarkerContent.Size = new System.Drawing.Size(209, 120); this.textBoxMarkerContent.TabIndex = 2; // // buttonOK // this.buttonOK.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; this.buttonOK.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground; this.buttonOK.Location = new System.Drawing.Point(68, 158); this.buttonOK.Name = "buttonOK"; this.buttonOK.Size = new System.Drawing.Size(57, 23); this.buttonOK.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled; this.buttonOK.TabIndex = 4; this.buttonOK.Text = "确定"; this.buttonOK.Click += new System.EventHandler(this.buttonOK_Click); // // buttonCancel // this.buttonCancel.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; this.buttonCancel.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground; this.buttonCancel.Location = new System.Drawing.Point(167, 158); this.buttonCancel.Name = "buttonCancel"; this.buttonCancel.Size = new System.Drawing.Size(57, 23); this.buttonCancel.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled; this.buttonCancel.TabIndex = 5; this.buttonCancel.Text = "取消"; this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click); // // FrmMarker // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(239, 188); this.Controls.Add(this.buttonCancel); this.Controls.Add(this.buttonOK); this.Controls.Add(this.textBoxMarkerContent); this.Controls.Add(this.labelMarkerContent); this.DoubleBuffered = true; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.MaximizeBox = false; this.Name = "FrmMarker"; this.ShowIcon = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "扯旗标注"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private Label labelMarkerContent; private TextBox textBoxMarkerContent; private ButtonX buttonOK; private ButtonX buttonCancel; } }