input.cs

来自「java csharp program that ask users a inp」· CS 代码 · 共 55 行

CS
55
字号
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Text;
using System.Windows.Forms;

namespace CPUScheduling
{
    
    public partial class Input : Form
    {
        
        public List<CPU> list = new List<CPU>();

        public Input()
        {
            InitializeComponent();
              }

        private void button3_Click(object sender, EventArgs e)
        {
            simulation s = new simulation();
            s.ShowDialog();
        }

        private void button2_Click(object sender, EventArgs e)
        {

        }

        private void button4_Click(object sender, EventArgs e) {
            this.Close();
        }

        private void button5_Click(object sender, EventArgs e) {
              }

        private void button1_Click(object sender, EventArgs e) {
           
        }

        private void richTextBox1_TextChanged(object sender, EventArgs e)
        {

        }

        private void panel2_Paint(object sender, PaintEventArgs e)
        {

        }
    }
}

⌨️ 快捷键说明

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