ConEmu.WinForms.ConEmuControl.ConEmuControl C# (CSharp) Méthode

ConEmuControl() public méthode

public ConEmuControl ( ) : System
Résultat System
        public ConEmuControl()
        {
            SetStyle(ControlStyles.AllPaintingInWmPaint | ControlStyles.UserPaint | ControlStyles.Opaque | ControlStyles.Selectable, true);

            // Prevent downsizing to zero because the current ConEmu implementation asserts on its HWND having positive dimensions
            #pragma warning disable once VirtualMemberCallInContructor
            MinimumSize = new Size(1, 1);
        }