| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 | namespace OTSIncAReportGraph.Controls{    partial class Control_XRayTable    {        /// <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 组件设计器生成的代码        /// <summary>         /// 设计器支持所需的方法 - 不要修改        /// 使用代码编辑器修改此方法的内容。        /// </summary>        private void InitializeComponent()        {            this.pictureBox1 = new System.Windows.Forms.PictureBox();            this.label_close = new System.Windows.Forms.Label();            this.pictureBox2 = new System.Windows.Forms.PictureBox();            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();            ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();            this.SuspendLayout();            //             // pictureBox1            //             this.pictureBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)             | System.Windows.Forms.AnchorStyles.Left)));            this.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;            this.pictureBox1.Location = new System.Drawing.Point(0, 0);            this.pictureBox1.Name = "pictureBox1";            this.pictureBox1.Size = new System.Drawing.Size(177, 220);            this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;            this.pictureBox1.TabIndex = 0;            this.pictureBox1.TabStop = false;            //             // label_close            //             this.label_close.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));            this.label_close.AutoSize = true;            this.label_close.Location = new System.Drawing.Point(990, 0);            this.label_close.Name = "label_close";            this.label_close.Size = new System.Drawing.Size(11, 12);            this.label_close.TabIndex = 1;            this.label_close.Text = "X";            this.label_close.Visible = false;            this.label_close.Click += new System.EventHandler(this.label_close_Click);            //             // pictureBox2            //             this.pictureBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)             | System.Windows.Forms.AnchorStyles.Left)));            this.pictureBox2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;            this.pictureBox2.Location = new System.Drawing.Point(174, 0);            this.pictureBox2.Name = "pictureBox2";            this.pictureBox2.Size = new System.Drawing.Size(177, 220);            this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;            this.pictureBox2.TabIndex = 2;            this.pictureBox2.TabStop = false;            //             // Control_XRayTable            //             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;            this.BackColor = System.Drawing.Color.White;            this.Controls.Add(this.pictureBox2);            this.Controls.Add(this.label_close);            this.Controls.Add(this.pictureBox1);            this.Name = "Control_XRayTable";            this.Size = new System.Drawing.Size(1004, 220);            this.Load += new System.EventHandler(this.Control_XRayTable_Load);            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();            ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();            this.ResumeLayout(false);            this.PerformLayout();        }        #endregion        private System.Windows.Forms.PictureBox pictureBox1;        public System.Windows.Forms.Label label_close;        private System.Windows.Forms.PictureBox pictureBox2;    }}
 |