service.designer.cs

来自「< SQL Server2005程序设计>」· CS 代码 · 共 84 行

CS
84
字号
namespace CS_Forms
{
    partial class Service
    {
        /// <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.Splitter1 = new System.Windows.Forms.Splitter();
            this.ReportViewer1 = new Microsoft.Reporting.WinForms.ReportViewer();
            this.ListBox1 = new System.Windows.Forms.ListBox();
            this.SuspendLayout();
            // 
            // Splitter1
            // 
            this.Splitter1.Location = new System.Drawing.Point(184, 0);
            this.Splitter1.Name = "Splitter1";
            this.Splitter1.Size = new System.Drawing.Size(3, 384);
            this.Splitter1.TabIndex = 7;
            this.Splitter1.TabStop = false;
            // 
            // ReportViewer1
            // 
            this.ReportViewer1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.ReportViewer1.Location = new System.Drawing.Point(184, 0);
            this.ReportViewer1.Name = "ReportViewer1";
            this.ReportViewer1.ProcessingMode = Microsoft.Reporting.WinForms.ProcessingMode.Remote;
            this.ReportViewer1.Size = new System.Drawing.Size(321, 384);
            this.ReportViewer1.TabIndex = 6;
            // 
            // ListBox1
            // 
            this.ListBox1.Dock = System.Windows.Forms.DockStyle.Left;
            this.ListBox1.FormattingEnabled = true;
            this.ListBox1.Location = new System.Drawing.Point(0, 0);
            this.ListBox1.Name = "ListBox1";
            this.ListBox1.Size = new System.Drawing.Size(184, 381);
            this.ListBox1.TabIndex = 5;
            this.ListBox1.SelectedIndexChanged += new System.EventHandler(this.ListBox1_SelectedIndexChanged);
            // 
            // Service
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(505, 384);
            this.Controls.Add(this.Splitter1);
            this.Controls.Add(this.ReportViewer1);
            this.Controls.Add(this.ListBox1);
            this.Name = "Service";
            this.Text = "Service";
            this.Load += new System.EventHandler(this.Service_Load);
            this.ResumeLayout(false);

        }

        #endregion

        internal System.Windows.Forms.Splitter Splitter1;
        internal Microsoft.Reporting.WinForms.ReportViewer ReportViewer1;
        internal System.Windows.Forms.ListBox ListBox1;
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?