├── LICENSE.htm ├── TabControl ├── Test │ ├── Images │ │ └── ie.ico │ ├── Properties │ │ ├── Settings.settings │ │ ├── Settings.Designer.cs │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── App.xaml │ ├── App.xaml.cs │ ├── Window1.xaml │ ├── Window1.xaml.cs │ ├── WindowUsingItemsSourceProperty.xaml.cs │ ├── Test.csproj │ ├── WindowUsingItemsProperty.xaml.cs │ ├── WindowUsingItemsSourceProperty.xaml │ └── WindowUsingItemsProperty.xaml ├── TabControl │ ├── Images │ │ └── newtab.ico │ ├── Properties │ │ ├── Settings.settings │ │ ├── Settings.Designer.cs │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── TabEventArgs.cs │ ├── Converters.cs │ ├── Helper.cs │ ├── TabItem.cs │ ├── Wpf.TabControl.csproj │ ├── TabPanel.cs │ ├── TabControl.cs │ └── Themes │ │ └── Generic.xaml └── Wpf.TabControl.sln ├── README.md └── .gitignore /LICENSE.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluentNotepad/TabControl/HEAD/LICENSE.htm -------------------------------------------------------------------------------- /TabControl/Test/Images/ie.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluentNotepad/TabControl/HEAD/TabControl/Test/Images/ie.ico -------------------------------------------------------------------------------- /TabControl/TabControl/Images/newtab.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluentNotepad/TabControl/HEAD/TabControl/TabControl/Images/newtab.ico -------------------------------------------------------------------------------- /TabControl/Test/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /TabControl/TabControl/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /TabControl/Test/App.xaml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /TabControl/Test/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Windows; 7 | 8 | namespace Test 9 | { 10 | /// 11 | /// Interaction logic for App.xaml 12 | /// 13 | public partial class App : Application 14 | { 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Tab Control 2 | =========== 3 | ![WpfTabControl](http://www.codeproject.com/KB/WPF/WpfTabControl/TabControl_Default.jpg) 4 | 5 | An Extended **WPF TabControl** 6 | 7 | License 8 | ------- 9 | The original _TabControl_ was created by [@alrh](http://www.codeproject.com/Articles/20860/An-Extended-WPF-TabControl) and was released under **The Code Project Open License (CPOL)**. 10 | 11 | This version, used in _FluentNotepad_, is maintained by [Salvatore Gentile](https://twitter.com/_sgentile). 12 | -------------------------------------------------------------------------------- /TabControl/Test/Window1.xaml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 442 | 443 | 444 | 455 | 456 | 457 | 458 | 459 | 460 | 470 | 471 | 472 | 480 | 486 | 487 | 488 | 489 | 490 | 491 | 492 | 493 | 494 | 495 | 496 | 497 | 498 | 499 | 500 | 501 | 502 | 503 | 504 | 505 | 506 | 517 | 518 | 532 | 533 | 534 | 545 | 546 | 547 | 548 | 549 | 550 | 561 | 562 | 563 | 572 | 578 | 579 | 580 | 581 | 582 | 583 | 584 | 585 | 586 | 587 | 588 | 589 | 590 | 591 | 592 | 593 | 594 | 595 | 596 | 597 | 598 | 599 | 600 | 601 | 602 | 603 | 604 | 605 | 613 | 614 | 615 | 617 | 618 | 624 | 625 | 626 | 627 | 628 | 629 | 630 | 637 | 638 | 639 | 647 | 653 | 654 | 655 | 656 | 657 | 658 | 659 | 660 | 661 | 662 | 663 | 664 | 665 | 666 | 667 | 668 | 669 | 670 | 671 | 672 | 673 | 674 | 675 | 676 | 677 | 678 | 679 | 680 | 688 | 689 | 690 | 692 | 693 | 699 | 700 | 701 | 702 | 703 | 704 | 705 | 713 | 714 | 715 | 723 | 729 | 730 | 731 | 732 | 733 | 775 | 776 | --------------------------------------------------------------------------------