tabcontrol-extra icon indicating copy to clipboard operation
tabcontrol-extra copied to clipboard

An improved TabControl for Windows Forms (.Net)

Results 7 tabcontrol-extra issues
Sort by recently updated
recently updated
newest added

[app.zip](https://github.com/tradewright/tabcontrol-extra/files/6136345/app.zip) You can add the above app.manifest file and use it in the demo project's Manifest property. After that, it is DPI-aware. Tab height will be automatically adjusted in various...

Currently the size of the closer button is a constant. I tested it and found that it could be changed to a property. I suggest that: If the value is...

The point passed to GetActiveTabIndex should be the client coordinate. Thus the corresponding code in TabControlExtra.OnDragOver should be: ````C# var dragPoint = new Point(drgevent.X, drgevent.Y); var tabPoint = this.PointToScreen(Point.Empty); dragPoint.Offset(-tabPoint.X,...

Hi Firstly great project, works really well Unless I am missing it, I can't see that it has an option to show a button to be able to add /...

tabcontrol-extra/TabControlExtra/TabControl/TabControlExtra.cs line 238 if (this.Alignment

Hello, Thank you for making such a great control, it is very useful. But I would like to have a menustrip attached to it like below. ![image](https://user-images.githubusercontent.com/983708/56284322-d7434780-611c-11e9-9080-560f78b7cbe4.png) Is it possible...