⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 output.designer.cs

📁 java csharp program that ask users a input(process arrival time, burst time and priority)
💻 CS
字号:
namespace CPUScheduling
{
    partial class Output
    {
        /// <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.panel1 = new System.Windows.Forms.Panel();
            this.panel2 = new System.Windows.Forms.Panel();
            this.label1 = new System.Windows.Forms.Label();
            this.lv = new System.Windows.Forms.ListView();
            this.PROCESS = new System.Windows.Forms.ColumnHeader();
            this.WT = new System.Windows.Forms.ColumnHeader();
            this.TT = new System.Windows.Forms.ColumnHeader();
            this.button1 = new System.Windows.Forms.Button();
            this.label2 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.label4 = new System.Windows.Forms.Label();
            this.tbTotalWT = new System.Windows.Forms.TextBox();
            this.tbAvgWT = new System.Windows.Forms.TextBox();
            this.tbTotalTT = new System.Windows.Forms.TextBox();
            this.tbAvgTT = new System.Windows.Forms.TextBox();
            this.panel1.SuspendLayout();
            this.panel2.SuspendLayout();
            this.SuspendLayout();
            // 
            // panel1
            // 
            this.panel1.BackColor = System.Drawing.Color.Navy;
            this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
            this.panel1.Controls.Add(this.tbAvgTT);
            this.panel1.Controls.Add(this.tbTotalTT);
            this.panel1.Controls.Add(this.tbAvgWT);
            this.panel1.Controls.Add(this.tbTotalWT);
            this.panel1.Controls.Add(this.label4);
            this.panel1.Controls.Add(this.label3);
            this.panel1.Controls.Add(this.panel2);
            this.panel1.Controls.Add(this.lv);
            this.panel1.Location = new System.Drawing.Point(12, 30);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(299, 281);
            this.panel1.TabIndex = 0;
            // 
            // panel2
            // 
            this.panel2.BackColor = System.Drawing.Color.AliceBlue;
            this.panel2.Controls.Add(this.label1);
            this.panel2.Location = new System.Drawing.Point(3, 3);
            this.panel2.Name = "panel2";
            this.panel2.Size = new System.Drawing.Size(233, 38);
            this.panel2.TabIndex = 2;
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Font = new System.Drawing.Font("Book Antiqua", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label1.ForeColor = System.Drawing.Color.Black;
            this.label1.Location = new System.Drawing.Point(3, 11);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(117, 16);
            this.label1.TabIndex = 1;
            this.label1.Text = "CPU UTILIZATION: ";
            // 
            // lv
            // 
            this.lv.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.PROCESS,
            this.WT,
            this.TT});
            this.lv.GridLines = true;
            this.lv.Location = new System.Drawing.Point(3, 47);
            this.lv.Name = "lv";
            this.lv.Size = new System.Drawing.Size(280, 164);
            this.lv.TabIndex = 0;
            this.lv.UseCompatibleStateImageBehavior = false;
            this.lv.View = System.Windows.Forms.View.Details;
            // 
            // PROCESS
            // 
            this.PROCESS.Text = "PROCESS";
            this.PROCESS.Width = 80;
            // 
            // WT
            // 
            this.WT.Text = "WT";
            this.WT.Width = 94;
            // 
            // TT
            // 
            this.TT.Text = "TT";
            this.TT.Width = 98;
            // 
            // button1
            // 
            this.button1.Location = new System.Drawing.Point(125, 317);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(75, 23);
            this.button1.TabIndex = 1;
            this.button1.Text = "Close";
            this.button1.UseVisualStyleBackColor = true;
            this.button1.Click += new System.EventHandler(this.button1_Click);
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Font = new System.Drawing.Font("Book Antiqua", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label2.ForeColor = System.Drawing.Color.White;
            this.label2.Location = new System.Drawing.Point(122, 9);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(78, 19);
            this.label2.TabIndex = 2;
            this.label2.Text = "RESULTS";
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Font = new System.Drawing.Font("Book Antiqua", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label3.ForeColor = System.Drawing.Color.White;
            this.label3.Location = new System.Drawing.Point(27, 220);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(45, 19);
            this.label3.TabIndex = 3;
            this.label3.Text = "Total";
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Font = new System.Drawing.Font("Book Antiqua", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label4.ForeColor = System.Drawing.Color.White;
            this.label4.Location = new System.Drawing.Point(5, 246);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(67, 19);
            this.label4.TabIndex = 4;
            this.label4.Text = "Average";
            // 
            // tbTotalWT
            // 
            this.tbTotalWT.Location = new System.Drawing.Point(88, 221);
            this.tbTotalWT.Name = "tbTotalWT";
            this.tbTotalWT.Size = new System.Drawing.Size(89, 20);
            this.tbTotalWT.TabIndex = 5;
            // 
            // tbAvgWT
            // 
            this.tbAvgWT.Location = new System.Drawing.Point(88, 247);
            this.tbAvgWT.Name = "tbAvgWT";
            this.tbAvgWT.Size = new System.Drawing.Size(89, 20);
            this.tbAvgWT.TabIndex = 6;
            // 
            // tbTotalTT
            // 
            this.tbTotalTT.Location = new System.Drawing.Point(185, 220);
            this.tbTotalTT.Name = "tbTotalTT";
            this.tbTotalTT.Size = new System.Drawing.Size(89, 20);
            this.tbTotalTT.TabIndex = 7;
            // 
            // tbAvgTT
            // 
            this.tbAvgTT.Location = new System.Drawing.Point(185, 246);
            this.tbAvgTT.Name = "tbAvgTT";
            this.tbAvgTT.Size = new System.Drawing.Size(89, 20);
            this.tbAvgTT.TabIndex = 8;
            // 
            // Output
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.Color.MidnightBlue;
            this.ClientSize = new System.Drawing.Size(326, 352);
            this.Controls.Add(this.label2);
            this.Controls.Add(this.button1);
            this.Controls.Add(this.panel1);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.MaximizeBox = false;
            this.Name = "Output";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Output";
            this.panel1.ResumeLayout(false);
            this.panel1.PerformLayout();
            this.panel2.ResumeLayout(false);
            this.panel2.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.Panel panel1;
        private System.Windows.Forms.Panel panel2;
        private System.Windows.Forms.Label label1;
        private System.Windows.Forms.ListView lv;
        private System.Windows.Forms.ColumnHeader WT;
        private System.Windows.Forms.Button button1;
        private System.Windows.Forms.Label label2;
        private System.Windows.Forms.ColumnHeader PROCESS;
        private System.Windows.Forms.ColumnHeader TT;
        private System.Windows.Forms.TextBox tbAvgTT;
        private System.Windows.Forms.TextBox tbTotalTT;
        private System.Windows.Forms.TextBox tbAvgWT;
        private System.Windows.Forms.TextBox tbTotalWT;
        private System.Windows.Forms.Label label4;
        private System.Windows.Forms.Label label3;
    }
}

⌨️ 快捷键说明

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