Alsing.Windows.Forms.CoreLib.SplitViewControl.SplitViewControl C# (CSharp) Метод

SplitViewControl() публичный Метод

Default constructor for the splitview control
public SplitViewControl ( ) : System
Результат System
        public SplitViewControl()
        {
            // This call is required by the Windows.Forms Form Designer.
            SetStyle(ControlStyles.ContainerControl, true);
//			this.SetStyle(ControlStyles.AllPaintingInWmPaint ,false);
//			this.SetStyle(ControlStyles.DoubleBuffer ,false);
//			this.SetStyle(ControlStyles.Selectable,true);
//			this.SetStyle(ControlStyles.ResizeRedraw ,true);
//			this.SetStyle(ControlStyles.Opaque ,true);			
//			this.SetStyle(ControlStyles.UserPaint,true);
            //SetStyle(ControlStyles.Selectable ,true);

            InitializeComponent();


            DoResize();
            ReSize(0, 0);
            //this.Refresh ();
        }