FormNormal.cs 623 字节
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace FaceControl
{
    public partial class FormNormal : FormBase
    {
        public FormNormal()
        {
            InitializeComponent();

            formControlBox1.MaximizeChanged += FormControlBox1_MaximizeChanged;
            SetControlBox(formControlBox1);
        }

        private void FormControlBox1_MaximizeChanged(bool max)
        {
            Maximize = max;
        }
    }
}