├── Keynotes ├── WPF-CUSTOM-CONTROL-DEVELOPMENT-UNCHAINED.pdf ├── WPF-UI-DEVELOPMENT-BEST-PRACTICES.pdf └── WPF-UI-DEVELOPMENT-UNCHAINED-v3-Out.pdf ├── README.md └── Solutions ├── CustomControlShowcase └── 0-1 │ ├── CCDevShowcase.sln │ ├── CCDevShowcase.v11.suo │ ├── CCDevShowcase │ ├── App.xaml │ ├── App.xaml.cs │ ├── CCDevShowcase.csproj │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── View │ │ ├── MainView.xaml │ │ └── MainView.xaml.cs │ ├── ViewModel │ │ ├── Samples │ │ │ ├── PointViewModel.cs │ │ │ └── SampleViewModel.cs │ │ └── ViewModelLocator.cs │ └── app.config │ ├── CCDevStyling │ ├── AttachedProperties │ │ └── AttachedProperties.cs │ ├── BitmapGraphics │ │ ├── Assets.xaml │ │ ├── Assets │ │ │ └── andrelanninger.png │ │ ├── Icons.xaml │ │ └── Icons │ │ │ ├── XWhiteIcon.png │ │ │ ├── comboWhite.png │ │ │ └── maestroWhite.png │ ├── CCDevStyling.csproj │ ├── Colors │ │ ├── Brushes.xaml │ │ └── Colors.xaml │ ├── Converters │ │ └── Converter.xaml │ ├── DataTemplates │ │ └── DataTemplates.xaml │ ├── LookAndFeel.xaml │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Settings │ │ ├── Settings.xaml │ │ └── Typography.xaml │ ├── Styles │ │ ├── Button.xaml │ │ ├── ContentControl.xaml │ │ ├── CustomControls │ │ │ ├── PointChart.xaml │ │ │ └── SearchTextBox.xaml │ │ ├── FrameworkElement.xaml │ │ ├── ListBox.xaml │ │ ├── TextBlock.xaml │ │ ├── TextBox.xaml │ │ └── ToggleButton.xaml │ └── VectorGraphics │ │ ├── Icons.xaml │ │ └── Shapes.xaml │ ├── CCLibrary │ ├── CCLibrary.csproj │ ├── Controls │ │ ├── HighlightableTextBlock │ │ │ ├── HighlightableTextBlock.cs │ │ │ └── HighlightableTextBlock.xaml │ │ ├── PointChart │ │ │ ├── Overview.cd │ │ │ ├── PointChart.cs │ │ │ ├── PointChart.xaml │ │ │ └── PointChartItem.cs │ │ └── SearchTextBox │ │ │ ├── SearchTextBox.cs │ │ │ └── SearchTextBox.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── Themes │ │ └── Generic.xaml │ └── CommonLibrary │ ├── CommonLibrary.csproj │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ └── Util │ ├── DelegateCommand.cs │ ├── MathHelpers.cs │ ├── ViewModelBase.cs │ └── WPFHelpers.cs └── UnchainedShowcase └── 0-1 ├── CCDevShowcase.sln ├── CCDevShowcase ├── App.xaml ├── App.xaml.cs ├── CCDevShowcase.csproj ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── View │ ├── MainView.xaml │ ├── MainView.xaml.cs │ ├── SimpleCCSampleView.xaml │ ├── SimpleCCSampleView.xaml.cs │ ├── Test1View.xaml │ ├── Test1View.xaml.cs │ ├── TestView.xaml │ └── TestView.xaml.cs ├── ViewModel │ ├── MainWindow │ │ ├── MainWindowViewModel.cs │ │ └── ViewViewModel.cs │ ├── Samples │ │ ├── PointViewModel.cs │ │ └── SampleViewModel.cs │ └── ViewModelLocator.cs └── app.config ├── CCDevStyling ├── BitmapGraphics │ ├── Assets.xaml │ ├── Assets │ │ └── andrelanninger.png │ ├── Icons.xaml │ └── Icons │ │ ├── XWhiteIcon.png │ │ ├── comboWhite.png │ │ └── maestroWhite.png ├── CCDevStyling.csproj ├── Colors │ ├── Brushes.xaml │ └── Colors.xaml ├── Converters │ └── Converter.xaml ├── DataTemplates │ └── DataTemplates.xaml ├── LookAndFeel.xaml ├── Properties │ └── AssemblyInfo.cs ├── Settings │ ├── Settings.xaml │ └── Typography.xaml ├── Styles │ ├── Border.xaml │ ├── Button.xaml │ ├── ContentControl.xaml │ ├── CustomControls │ │ ├── CircularProgressBar.xaml │ │ ├── PointChart.xaml │ │ └── SearchTextBox.xaml │ ├── FrameworkElement.xaml │ ├── ListBox.xaml │ ├── ProgressBar.xaml │ ├── Slider.xaml │ ├── TextBlock.xaml │ ├── TextBox.xaml │ └── ToggleButton.xaml └── VectorGraphics │ ├── Icons.xaml │ └── Shapes.xaml ├── CCLibrary ├── AttachedProperties │ └── AttachedProperties.cs ├── Behaviors │ └── LoadingBehavior │ │ ├── LoadingBehavior.cs │ │ └── LoadingBehaviorAdorner.cs ├── CCLibrary.csproj ├── Controls │ ├── CircularProgressBar │ │ ├── CircularProgressBar.cs │ │ └── CircularProgressBar.xaml │ ├── HighlightableTextBlock │ │ ├── HighlightableTextBlock.cs │ │ └── HighlightableTextBlock.xaml │ ├── NumericUpDown │ │ └── NumericUpDown.cs │ ├── PointChart │ │ ├── Overview.cd │ │ ├── PointChart.cs │ │ ├── PointChart.xaml │ │ └── PointChartItem.cs │ └── SearchTextBox │ │ ├── SearchTextBox.cs │ │ └── SearchTextBox.xaml ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── Themes │ └── Generic.xaml ├── CommonLibrary ├── CommonLibrary.csproj ├── Converter │ ├── CoerceValueConverter.cs │ └── ValueAsAngleConverter.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── Util │ ├── DelegateCommand.cs │ ├── MathHelpers.cs │ ├── ViewModelBase.cs │ └── WPFHelpers.cs ├── DLLs ├── Microsoft.Windows.Design.Interaction.dll └── System.Windows.Interactivity.dll └── SharedResourceDictionary ├── Properties └── AssemblyInfo.cs ├── SharedResourceDictionary.cs └── SharedResourceDictionary.csproj /Keynotes/WPF-CUSTOM-CONTROL-DEVELOPMENT-UNCHAINED.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Keynotes/WPF-CUSTOM-CONTROL-DEVELOPMENT-UNCHAINED.pdf -------------------------------------------------------------------------------- /Keynotes/WPF-UI-DEVELOPMENT-BEST-PRACTICES.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Keynotes/WPF-UI-DEVELOPMENT-BEST-PRACTICES.pdf -------------------------------------------------------------------------------- /Keynotes/WPF-UI-DEVELOPMENT-UNCHAINED-v3-Out.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Keynotes/WPF-UI-DEVELOPMENT-UNCHAINED-v3-Out.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/README.md -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCDevShowcase.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCDevShowcase.sln -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCDevShowcase.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCDevShowcase.v11.suo -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCDevShowcase/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCDevShowcase/App.xaml -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCDevShowcase/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCDevShowcase/App.xaml.cs -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCDevShowcase/CCDevShowcase.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCDevShowcase/CCDevShowcase.csproj -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCDevShowcase/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCDevShowcase/MainWindow.xaml -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCDevShowcase/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCDevShowcase/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCDevShowcase/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCDevShowcase/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCDevShowcase/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCDevShowcase/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCDevShowcase/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCDevShowcase/Properties/Resources.resx -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCDevShowcase/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCDevShowcase/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCDevShowcase/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCDevShowcase/Properties/Settings.settings -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCDevShowcase/View/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCDevShowcase/View/MainView.xaml -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCDevShowcase/View/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCDevShowcase/View/MainView.xaml.cs -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCDevShowcase/ViewModel/Samples/PointViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCDevShowcase/ViewModel/Samples/PointViewModel.cs -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCDevShowcase/ViewModel/Samples/SampleViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCDevShowcase/ViewModel/Samples/SampleViewModel.cs -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCDevShowcase/ViewModel/ViewModelLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCDevShowcase/ViewModel/ViewModelLocator.cs -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCDevShowcase/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCDevShowcase/app.config -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCDevStyling/AttachedProperties/AttachedProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCDevStyling/AttachedProperties/AttachedProperties.cs -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCDevStyling/BitmapGraphics/Assets.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCDevStyling/BitmapGraphics/Assets.xaml -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCDevStyling/BitmapGraphics/Assets/andrelanninger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCDevStyling/BitmapGraphics/Assets/andrelanninger.png -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCDevStyling/BitmapGraphics/Icons.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCDevStyling/BitmapGraphics/Icons.xaml -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCDevStyling/BitmapGraphics/Icons/XWhiteIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCDevStyling/BitmapGraphics/Icons/XWhiteIcon.png -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCDevStyling/BitmapGraphics/Icons/comboWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCDevStyling/BitmapGraphics/Icons/comboWhite.png -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCDevStyling/BitmapGraphics/Icons/maestroWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCDevStyling/BitmapGraphics/Icons/maestroWhite.png -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCDevStyling/CCDevStyling.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCDevStyling/CCDevStyling.csproj -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCDevStyling/Colors/Brushes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCDevStyling/Colors/Brushes.xaml -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCDevStyling/Colors/Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCDevStyling/Colors/Colors.xaml -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCDevStyling/Converters/Converter.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCDevStyling/Converters/Converter.xaml -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCDevStyling/DataTemplates/DataTemplates.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCDevStyling/DataTemplates/DataTemplates.xaml -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCDevStyling/LookAndFeel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCDevStyling/LookAndFeel.xaml -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCDevStyling/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCDevStyling/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCDevStyling/Settings/Settings.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCDevStyling/Settings/Settings.xaml -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCDevStyling/Settings/Typography.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCDevStyling/Settings/Typography.xaml -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCDevStyling/Styles/Button.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCDevStyling/Styles/Button.xaml -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCDevStyling/Styles/ContentControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCDevStyling/Styles/ContentControl.xaml -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCDevStyling/Styles/CustomControls/PointChart.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCDevStyling/Styles/CustomControls/PointChart.xaml -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCDevStyling/Styles/CustomControls/SearchTextBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCDevStyling/Styles/CustomControls/SearchTextBox.xaml -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCDevStyling/Styles/FrameworkElement.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCDevStyling/Styles/FrameworkElement.xaml -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCDevStyling/Styles/ListBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCDevStyling/Styles/ListBox.xaml -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCDevStyling/Styles/TextBlock.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCDevStyling/Styles/TextBlock.xaml -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCDevStyling/Styles/TextBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCDevStyling/Styles/TextBox.xaml -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCDevStyling/Styles/ToggleButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCDevStyling/Styles/ToggleButton.xaml -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCDevStyling/VectorGraphics/Icons.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCDevStyling/VectorGraphics/Icons.xaml -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCDevStyling/VectorGraphics/Shapes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCDevStyling/VectorGraphics/Shapes.xaml -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCLibrary/CCLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCLibrary/CCLibrary.csproj -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCLibrary/Controls/HighlightableTextBlock/HighlightableTextBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCLibrary/Controls/HighlightableTextBlock/HighlightableTextBlock.cs -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCLibrary/Controls/HighlightableTextBlock/HighlightableTextBlock.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCLibrary/Controls/HighlightableTextBlock/HighlightableTextBlock.xaml -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCLibrary/Controls/PointChart/Overview.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCLibrary/Controls/PointChart/Overview.cd -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCLibrary/Controls/PointChart/PointChart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCLibrary/Controls/PointChart/PointChart.cs -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCLibrary/Controls/PointChart/PointChart.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCLibrary/Controls/PointChart/PointChart.xaml -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCLibrary/Controls/PointChart/PointChartItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCLibrary/Controls/PointChart/PointChartItem.cs -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCLibrary/Controls/SearchTextBox/SearchTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCLibrary/Controls/SearchTextBox/SearchTextBox.cs -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCLibrary/Controls/SearchTextBox/SearchTextBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCLibrary/Controls/SearchTextBox/SearchTextBox.xaml -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCLibrary/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCLibrary/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCLibrary/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCLibrary/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCLibrary/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCLibrary/Properties/Resources.resx -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCLibrary/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCLibrary/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCLibrary/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCLibrary/Properties/Settings.settings -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CCLibrary/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CCLibrary/Themes/Generic.xaml -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CommonLibrary/CommonLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CommonLibrary/CommonLibrary.csproj -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CommonLibrary/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CommonLibrary/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CommonLibrary/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CommonLibrary/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CommonLibrary/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CommonLibrary/Properties/Resources.resx -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CommonLibrary/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CommonLibrary/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CommonLibrary/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CommonLibrary/Properties/Settings.settings -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CommonLibrary/Util/DelegateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CommonLibrary/Util/DelegateCommand.cs -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CommonLibrary/Util/MathHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CommonLibrary/Util/MathHelpers.cs -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CommonLibrary/Util/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CommonLibrary/Util/ViewModelBase.cs -------------------------------------------------------------------------------- /Solutions/CustomControlShowcase/0-1/CommonLibrary/Util/WPFHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/CustomControlShowcase/0-1/CommonLibrary/Util/WPFHelpers.cs -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevShowcase.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevShowcase.sln -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevShowcase/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevShowcase/App.xaml -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevShowcase/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevShowcase/App.xaml.cs -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevShowcase/CCDevShowcase.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevShowcase/CCDevShowcase.csproj -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevShowcase/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevShowcase/MainWindow.xaml -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevShowcase/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevShowcase/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevShowcase/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevShowcase/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevShowcase/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevShowcase/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevShowcase/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevShowcase/Properties/Resources.resx -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevShowcase/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevShowcase/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevShowcase/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevShowcase/Properties/Settings.settings -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevShowcase/View/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevShowcase/View/MainView.xaml -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevShowcase/View/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevShowcase/View/MainView.xaml.cs -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevShowcase/View/SimpleCCSampleView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevShowcase/View/SimpleCCSampleView.xaml -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevShowcase/View/SimpleCCSampleView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevShowcase/View/SimpleCCSampleView.xaml.cs -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevShowcase/View/Test1View.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevShowcase/View/Test1View.xaml -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevShowcase/View/Test1View.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevShowcase/View/Test1View.xaml.cs -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevShowcase/View/TestView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevShowcase/View/TestView.xaml -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevShowcase/View/TestView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevShowcase/View/TestView.xaml.cs -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevShowcase/ViewModel/MainWindow/MainWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevShowcase/ViewModel/MainWindow/MainWindowViewModel.cs -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevShowcase/ViewModel/MainWindow/ViewViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevShowcase/ViewModel/MainWindow/ViewViewModel.cs -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevShowcase/ViewModel/Samples/PointViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevShowcase/ViewModel/Samples/PointViewModel.cs -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevShowcase/ViewModel/Samples/SampleViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevShowcase/ViewModel/Samples/SampleViewModel.cs -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevShowcase/ViewModel/ViewModelLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevShowcase/ViewModel/ViewModelLocator.cs -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevShowcase/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevShowcase/app.config -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevStyling/BitmapGraphics/Assets.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevStyling/BitmapGraphics/Assets.xaml -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevStyling/BitmapGraphics/Assets/andrelanninger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevStyling/BitmapGraphics/Assets/andrelanninger.png -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevStyling/BitmapGraphics/Icons.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevStyling/BitmapGraphics/Icons.xaml -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevStyling/BitmapGraphics/Icons/XWhiteIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevStyling/BitmapGraphics/Icons/XWhiteIcon.png -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevStyling/BitmapGraphics/Icons/comboWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevStyling/BitmapGraphics/Icons/comboWhite.png -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevStyling/BitmapGraphics/Icons/maestroWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevStyling/BitmapGraphics/Icons/maestroWhite.png -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevStyling/CCDevStyling.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevStyling/CCDevStyling.csproj -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevStyling/Colors/Brushes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevStyling/Colors/Brushes.xaml -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevStyling/Colors/Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevStyling/Colors/Colors.xaml -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevStyling/Converters/Converter.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevStyling/Converters/Converter.xaml -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevStyling/DataTemplates/DataTemplates.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevStyling/DataTemplates/DataTemplates.xaml -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevStyling/LookAndFeel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevStyling/LookAndFeel.xaml -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevStyling/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevStyling/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevStyling/Settings/Settings.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevStyling/Settings/Settings.xaml -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevStyling/Settings/Typography.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevStyling/Settings/Typography.xaml -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevStyling/Styles/Border.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevStyling/Styles/Border.xaml -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevStyling/Styles/Button.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevStyling/Styles/Button.xaml -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevStyling/Styles/ContentControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevStyling/Styles/ContentControl.xaml -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevStyling/Styles/CustomControls/CircularProgressBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevStyling/Styles/CustomControls/CircularProgressBar.xaml -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevStyling/Styles/CustomControls/PointChart.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevStyling/Styles/CustomControls/PointChart.xaml -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevStyling/Styles/CustomControls/SearchTextBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevStyling/Styles/CustomControls/SearchTextBox.xaml -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevStyling/Styles/FrameworkElement.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevStyling/Styles/FrameworkElement.xaml -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevStyling/Styles/ListBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevStyling/Styles/ListBox.xaml -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevStyling/Styles/ProgressBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevStyling/Styles/ProgressBar.xaml -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevStyling/Styles/Slider.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevStyling/Styles/Slider.xaml -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevStyling/Styles/TextBlock.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevStyling/Styles/TextBlock.xaml -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevStyling/Styles/TextBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevStyling/Styles/TextBox.xaml -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevStyling/Styles/ToggleButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevStyling/Styles/ToggleButton.xaml -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevStyling/VectorGraphics/Icons.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevStyling/VectorGraphics/Icons.xaml -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCDevStyling/VectorGraphics/Shapes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCDevStyling/VectorGraphics/Shapes.xaml -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCLibrary/AttachedProperties/AttachedProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCLibrary/AttachedProperties/AttachedProperties.cs -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCLibrary/Behaviors/LoadingBehavior/LoadingBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCLibrary/Behaviors/LoadingBehavior/LoadingBehavior.cs -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCLibrary/Behaviors/LoadingBehavior/LoadingBehaviorAdorner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCLibrary/Behaviors/LoadingBehavior/LoadingBehaviorAdorner.cs -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCLibrary/CCLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCLibrary/CCLibrary.csproj -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCLibrary/Controls/CircularProgressBar/CircularProgressBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCLibrary/Controls/CircularProgressBar/CircularProgressBar.cs -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCLibrary/Controls/CircularProgressBar/CircularProgressBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCLibrary/Controls/CircularProgressBar/CircularProgressBar.xaml -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCLibrary/Controls/HighlightableTextBlock/HighlightableTextBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCLibrary/Controls/HighlightableTextBlock/HighlightableTextBlock.cs -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCLibrary/Controls/HighlightableTextBlock/HighlightableTextBlock.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCLibrary/Controls/HighlightableTextBlock/HighlightableTextBlock.xaml -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCLibrary/Controls/NumericUpDown/NumericUpDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCLibrary/Controls/NumericUpDown/NumericUpDown.cs -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCLibrary/Controls/PointChart/Overview.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCLibrary/Controls/PointChart/Overview.cd -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCLibrary/Controls/PointChart/PointChart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCLibrary/Controls/PointChart/PointChart.cs -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCLibrary/Controls/PointChart/PointChart.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCLibrary/Controls/PointChart/PointChart.xaml -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCLibrary/Controls/PointChart/PointChartItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCLibrary/Controls/PointChart/PointChartItem.cs -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCLibrary/Controls/SearchTextBox/SearchTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCLibrary/Controls/SearchTextBox/SearchTextBox.cs -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCLibrary/Controls/SearchTextBox/SearchTextBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCLibrary/Controls/SearchTextBox/SearchTextBox.xaml -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCLibrary/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCLibrary/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCLibrary/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCLibrary/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCLibrary/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCLibrary/Properties/Resources.resx -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCLibrary/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCLibrary/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCLibrary/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCLibrary/Properties/Settings.settings -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CCLibrary/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CCLibrary/Themes/Generic.xaml -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CommonLibrary/CommonLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CommonLibrary/CommonLibrary.csproj -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CommonLibrary/Converter/CoerceValueConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CommonLibrary/Converter/CoerceValueConverter.cs -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CommonLibrary/Converter/ValueAsAngleConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CommonLibrary/Converter/ValueAsAngleConverter.cs -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CommonLibrary/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CommonLibrary/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CommonLibrary/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CommonLibrary/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CommonLibrary/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CommonLibrary/Properties/Resources.resx -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CommonLibrary/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CommonLibrary/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CommonLibrary/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CommonLibrary/Properties/Settings.settings -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CommonLibrary/Util/DelegateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CommonLibrary/Util/DelegateCommand.cs -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CommonLibrary/Util/MathHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CommonLibrary/Util/MathHelpers.cs -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CommonLibrary/Util/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CommonLibrary/Util/ViewModelBase.cs -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/CommonLibrary/Util/WPFHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/CommonLibrary/Util/WPFHelpers.cs -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/DLLs/Microsoft.Windows.Design.Interaction.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/DLLs/Microsoft.Windows.Design.Interaction.dll -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/DLLs/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/DLLs/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/SharedResourceDictionary/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/SharedResourceDictionary/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/SharedResourceDictionary/SharedResourceDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/SharedResourceDictionary/SharedResourceDictionary.cs -------------------------------------------------------------------------------- /Solutions/UnchainedShowcase/0-1/SharedResourceDictionary/SharedResourceDictionary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dctdct/WPF-UI-Development-Best-Practices/HEAD/Solutions/UnchainedShowcase/0-1/SharedResourceDictionary/SharedResourceDictionary.csproj --------------------------------------------------------------------------------