Skip to content
This repository has been archived by the owner on Sep 16, 2018. It is now read-only.

A tabcontrol for windows store apps, similar to the one used in the windows store

License

Notifications You must be signed in to change notification settings

brianmwadime/win-tabcontrol

Repository files navigation

win-tabcontrol

A Tab/Pivot control for windows store apps, similar to the one used in the windows store

Link to download binary version of the control: DLL download

Sample XAML usage:

...
xmlns:tabcontrol="using:Peeksoft.Win.TabControl"
...

<Grid Background="{StaticResource ApplicationPageBackgroundThemeBrush}">
    <tabcontrol:TabControl
        x:Name="TabControl" />
</Grid>

Sample code behind to initialize tabs:

TabControl.AddTab(new Tab("tab 1", new Grid()));
TabControl.AddTab(new Tab("tab 2", new Grid()));
TabControl.AddTab(new Tab("tab 3", new Grid()));

TODO:

  • Allow tabs to be defined via XAML
  • Animate selected tab headers on screen if they are off screen
  • Expose properties to customize tab headers

About

A tabcontrol for windows store apps, similar to the one used in the windows store

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages