WinTabControls 1.6.0

dotnet add package WinTabControls --version 1.6.0
NuGet\Install-Package WinTabControls -Version 1.6.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="WinTabControls" Version="1.6.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add WinTabControls --version 1.6.0
#r "nuget: WinTabControls, 1.6.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install WinTabControls as a Cake Addin
#addin nuget:?package=WinTabControls&version=1.6.0

// Install WinTabControls as a Cake Tool
#tool nuget:?package=WinTabControls&version=1.6.0

WinTabControls

样例图片 <br/>nuget download <br/>github download

TabStrips: A TabControl in the Visual Studio 2005 way!

Besides all the new features of Visual Studio, there is a distinct TabControl with a new style like no other. The code here tries to build up a control which behaves like the tab pages of VS.NET 2005.

Building a TabControl consists of building two controls: a TabControl itself, which is a container control, but only accepts TabPages as a containing control. This could be done by assigning a Designer class to the TabControl. Now, TabPage is a container control too, but can accept all kinds of controls hosted in it.

The Visual Studio TabControl slightly differs from a normal tab control, because it only shows as much TabPages as fits the width of the control. All the other TabPages are available via a context menu appearing by clicking the glyph icon. Selecting a TabPage from the menu brings it to position 0 of the TabPageCollection, so that it appears as the first TabPage.

http://www.codeproject.com/Articles/13902/TabStrips-A-TabControl-in-the-Visual-Studio-2005-w ''' csharp

...

PageControl:

https://github.com/oozcitak/PagedControl img

TabControl:

https://github.com/oozcitak/TabControl

样例图片

CustomTab:

This project is just a modified version of Painting Your Own Tabs - Second Edition made by The Man from U.N.C.L.E. https://www.codeproject.com/Articles/91387/Painting-Your-Own-Tabs-Second-Edition-2

By no means am I the creator of this source code.

TabStrips 原始控件库很久没有更新了,这里是为了适应自己的项目做了一些改进与美化

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.6.0 745 11/16/2022
1.5.0 446 8/26/2022
1.4.0 402 8/18/2022
1.3.0 420 8/5/2022
1.2.0 501 8/1/2022
1.1.0 416 7/27/2022
1.0.0 416 7/26/2022

optimization and modify