Free cookie consent management tool by TermsFeed Policy Generator

Ticket #2607: Enable WS_EX_COMPOSITED on DragOverTabControl.patch

File Enable WS_EX_COMPOSITED on DragOverTabControl.patch, 490 bytes (added by pfleck, 8 years ago)
  • DragOverTabControl.cs

     
    5757        SelectedIndex = tabIndex;
    5858      }
    5959    }
     60
     61    protected override CreateParams CreateParams {
     62      get {
     63        CreateParams cp = base.CreateParams;
     64        cp.ExStyle |= 0x02000000;  // Turn on WS_EX_COMPOSITED
     65        return cp;
     66      }
     67    }
    6068  }
    6169}