form1.cs

来自「微软(Microsoft)出版社C井练习文件及解答」· CS 代码 · 共 32 行

CS
32
字号
#region Using directives

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Windows.Forms;

#endregion

namespace Properties
{
    partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            resize();
        }

        private void resize()
        {
            // to do
        }

        private void Form1_Resize(object sender, EventArgs e)
        {
            resize();
        }
    }
}

⌨️ 快捷键说明

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