| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 | namespace OTSPeriodicTable{    partial class OTSPeriodicTableForm    {        /// <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.thePeriodicTable1 = new OTSPeriodicTable.ThePeriodicTable();            this.SuspendLayout();            //             // thePeriodicTable1            //             this.thePeriodicTable1.AutoScroll = true;            this.thePeriodicTable1.Location = new System.Drawing.Point(1, 1);            this.thePeriodicTable1.Name = "thePeriodicTable1";            this.thePeriodicTable1.Size = new System.Drawing.Size(1900, 1094);            this.thePeriodicTable1.TabIndex = 0;            //             // OTSPeriodicTableForm            //             this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;            this.AutoScroll = true;            this.ClientSize = new System.Drawing.Size(1340, 896);            this.Controls.Add(this.thePeriodicTable1);            this.Name = "OTSPeriodicTableForm";            this.ShowIcon = false;            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;            this.Text = "元素周期表";            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.OTSPeriodicTableForm_FormClosing);            this.Load += new System.EventHandler(this.OTSPeriodicTableForm_Load);            this.ResumeLayout(false);        }        #endregion        private ThePeriodicTable thePeriodicTable1;    }}
 |