BExplorer.Shell.TreeViewBase.OnHandleCreated C# (CSharp) Method

OnHandleCreated() protected method

protected OnHandleCreated ( EventArgs e ) : void
e System.EventArgs
return void
		protected override void OnHandleCreated(EventArgs e) {
			base.OnHandleCreated(e);
			SetDoubleBuffer();
			SetExpandoesStyle();
			SendMessage(this.Handle, TVM_SETEXTENDEDSTYLE, (IntPtr)TVS_EX_AUTOHSCROLL, (IntPtr)TVS_EX_AUTOHSCROLL);
			UxTheme.SetWindowTheme(this.Handle, "Explorer", 0);

		}
    [HandleProcessCorruptedStateExceptions]