Is it possible to make the WinForms Tab Control be able to do tab reordering like IE or Firefox?
问题 Is it possible to reorder the tabs in the WinForms TabControl at run-time like IE or Firefox? Links like this don't give me much hope. 回答1: Sure, it's possible! You're most likely trying to overcomplicate the solution. Essentially, all you have to do is subclass the standard TabControl and add some logic to the mouse event handlers. You'll just need to check which form the user is currently dragging and reorder it in the TabPages collection. There are a couple of complete solutions available