├── .gitignore ├── README.txt └── src ├── TestApplication ├── App.xaml ├── App.xaml.cs ├── Application.ico ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ └── AssemblyInfo.cs └── TestApplication.csproj ├── WPFControls.Layout ├── BusyIndicator │ ├── BusyIndicator.cs │ └── BusyIndicator.xaml ├── DialogContainer │ ├── DialogContainer.cs │ └── DialogContainer.xaml ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Themes │ └── Generic.xaml ├── TransitioningContentControl │ ├── TransitioningContentControl.cs │ └── TransitioningContentControl.xaml ├── VisualStates.cs └── WPFControls.Layout.csproj └── WPFControls.sln /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | obj 3 | bin 4 | _ReSharper.* 5 | _UpgradeReport.* 6 | *.csproj.user 7 | *.resharper.user 8 | *.resharper 9 | *.suo 10 | *.cache 11 | *~ 12 | *.swp 13 | *.user 14 | TestResult.xml 15 | results -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- 1 | This is a collection of Custom WPF Controls. 2 | 3 | Some controls are direct ports from the Silverlight Toolkit (http://silverlight.codeplex.com/), modified to 4 | be used in WPF application. 5 | 6 | All credits goes to the Silverlight Toolkit Team. -------------------------------------------------------------------------------- /src/TestApplication/App.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/TestApplication/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Windows; 6 | 7 | namespace TestApplication 8 | { 9 | /// 10 | /// Interaction logic for App.xaml 11 | /// 12 | public partial class App : Application 13 | { 14 | } 15 | } -------------------------------------------------------------------------------- /src/TestApplication/Application.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenspettersson/WPF-Controls/02797e860fd3219b97a8f16afc061aabcee8c0e6/src/TestApplication/Application.ico -------------------------------------------------------------------------------- /src/TestApplication/MainWindow.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 8 | 209 | 210 | 211 | 212 | 213 | 214 | 215 |