gitextract_go_s1dlq/ ├── .editorconfig ├── .github/ │ └── FUNDING.yml ├── .gitignore ├── DotNetProjects.snk ├── README.md ├── WpfToolkit/ │ ├── AssemblyAttrs.cs │ ├── AssemblyInfo.cs │ ├── Calendar/ │ │ ├── Microsoft/ │ │ │ └── Windows/ │ │ │ ├── Automation/ │ │ │ │ └── Peers/ │ │ │ │ ├── CalendarAutomationPeer.cs │ │ │ │ ├── CalendarButtonAutomationPeer.cs │ │ │ │ └── CalendarDayButtonAutomationPeer.cs │ │ │ └── Controls/ │ │ │ ├── Calendar.cs │ │ │ ├── CalendarBlackoutDatesCollection.cs │ │ │ ├── CalendarButton.cs │ │ │ ├── CalendarDateChangedEventArgs.cs │ │ │ ├── CalendarDateRange.cs │ │ │ ├── CalendarDateRangeChangingEventArgs.cs │ │ │ ├── CalendarDayButton.cs │ │ │ ├── CalendarItem.cs │ │ │ ├── CalendarMode.cs │ │ │ ├── CalendarModeChangedEventArgs.cs │ │ │ ├── CalendarSelectionChangedEventArgs.cs │ │ │ ├── CalendarSelectionMode.cs │ │ │ ├── DateTimeHelper.cs │ │ │ ├── KeyboardHelper.cs │ │ │ ├── SelectedDatesCollection.cs │ │ │ └── VisualStates.cs │ │ └── Themes/ │ │ ├── Aero.NormalColor.xaml │ │ ├── Classic.xaml │ │ ├── Generic.xaml │ │ ├── Luna.HomeStead.xaml │ │ ├── Luna.Metallic.xaml │ │ ├── Luna.NormalColor.xaml │ │ └── Royale.NormalColor.xaml │ ├── Common/ │ │ └── System/ │ │ └── Windows/ │ │ └── Controls/ │ │ ├── BindingEvaluator.cs │ │ ├── Extensions.cs │ │ ├── IUpdateVisualState.cs │ │ ├── InteractionHelper.cs │ │ ├── ItemsControlHelper.cs │ │ ├── VisualStates.cs │ │ ├── VisualTreeExtensions.cs │ │ └── WeakEventListener.cs │ ├── DataVisualization/ │ │ ├── AggregatedObservableCollection.cs │ │ ├── AssemblyInfoShared.cs │ │ ├── Charting/ │ │ │ ├── AnimationSequence.cs │ │ │ ├── Axis/ │ │ │ │ ├── Axis.cs │ │ │ │ ├── AxisIntervalType.cs │ │ │ │ ├── AxisLabel.cs │ │ │ │ ├── AxisLocation.cs │ │ │ │ ├── AxisOrientation.cs │ │ │ │ ├── CategoryAxis.cs │ │ │ │ ├── CategorySortOrder.cs │ │ │ │ ├── DateTimeAxis.cs │ │ │ │ ├── DateTimeAxisLabel.cs │ │ │ │ ├── DateTimeIntervalType.cs │ │ │ │ ├── DisplayAxis.cs │ │ │ │ ├── DisplayAxisGridLines.cs │ │ │ │ ├── IAnchoredToOrigin.cs │ │ │ │ ├── IAxis.cs │ │ │ │ ├── IAxisListener.cs │ │ │ │ ├── ICategoryAxis.cs │ │ │ │ ├── IDataConsumer.cs │ │ │ │ ├── IDataProvider.cs │ │ │ │ ├── IRangeAxis.cs │ │ │ │ ├── IRangeConsumer.cs │ │ │ │ ├── IRangeProvider.cs │ │ │ │ ├── IValueMarginConsumer.cs │ │ │ │ ├── IValueMarginProvider.cs │ │ │ │ ├── LinearAxis.cs │ │ │ │ ├── LogarithmicAxis.cs │ │ │ │ ├── NullableConverter.cs │ │ │ │ ├── NumericAxis.cs │ │ │ │ ├── NumericAxisLabel.cs │ │ │ │ ├── OrientedAxisGridLines.cs │ │ │ │ ├── RangeAxis.cs │ │ │ │ └── ValueMargin.cs │ │ │ ├── Chart/ │ │ │ │ ├── Chart.cs │ │ │ │ └── SeriesHostAxesCollection.cs │ │ │ ├── DataPoint/ │ │ │ │ ├── AreaDataPoint.cs │ │ │ │ ├── BarDataPoint.cs │ │ │ │ ├── BubbleDataPoint.cs │ │ │ │ ├── CandlestickDataPoint.cs │ │ │ │ ├── ColumnDataPoint.cs │ │ │ │ ├── DataPoint.cs │ │ │ │ ├── DataPointState.cs │ │ │ │ ├── LineDataPoint.cs │ │ │ │ ├── PieDataPoint.cs │ │ │ │ └── ScatterDataPoint.cs │ │ │ ├── FrameworkElementExtensions.cs │ │ │ ├── Helper/ │ │ │ │ ├── Converters.cs │ │ │ │ ├── FormattingConverter.cs │ │ │ │ └── TreeHelper.cs │ │ │ ├── IRequireSeriesHost.cs │ │ │ ├── ISeriesHost.cs │ │ │ ├── ISeriesHostExtensions.cs │ │ │ ├── Pie/ │ │ │ │ ├── PieChartHelper.cs │ │ │ │ ├── PieChartLabel.cs │ │ │ │ └── PieChartLabelArea.cs │ │ │ ├── Primitives/ │ │ │ │ ├── DelegatingListBox.cs │ │ │ │ ├── Edge.cs │ │ │ │ └── EdgePanel.cs │ │ │ ├── ResourceDictionaryDispensedEventArgs.cs │ │ │ ├── ResourceDictionaryDispenser.cs │ │ │ ├── ResourceDictionaryEnumerator.cs │ │ │ ├── Series/ │ │ │ │ ├── AreaSeries.cs │ │ │ │ ├── BarSeries.cs │ │ │ │ ├── BubbleSeries.cs │ │ │ │ ├── CandlestickSeries.cs │ │ │ │ ├── ColumnBarBaseSeries.cs │ │ │ │ ├── ColumnSeries.cs │ │ │ │ ├── Compatible/ │ │ │ │ │ ├── AreaSeries.cs │ │ │ │ │ ├── BarSeries.cs │ │ │ │ │ ├── ColumnSeries.cs │ │ │ │ │ ├── LineSeries.cs │ │ │ │ │ ├── ScatterSeries.cs │ │ │ │ │ └── SelectionEnabledToSelectionModeConverter.cs │ │ │ │ ├── DataPointSeries.cs │ │ │ │ ├── DataPointSeriesWithAxes.cs │ │ │ │ ├── DataPointSingleSeriesWithAxes.cs │ │ │ │ ├── DefinitionSeries.cs │ │ │ │ ├── IRequireGlobalSeriesIndex.cs │ │ │ │ ├── ISeries.cs │ │ │ │ ├── LabeledPieSeries.cs │ │ │ │ ├── LegendItem.cs │ │ │ │ ├── LineAreaBaseSeries.cs │ │ │ │ ├── LineSeries.cs │ │ │ │ ├── PieSeries.cs │ │ │ │ ├── ScatterSeries.cs │ │ │ │ ├── Series.cs │ │ │ │ ├── SeriesDefinition.cs │ │ │ │ ├── SeriesSelectionMode.cs │ │ │ │ ├── SplineSeries.cs │ │ │ │ ├── Stacked100AreaSeries.cs │ │ │ │ ├── Stacked100BarSeries.cs │ │ │ │ ├── Stacked100ColumnSeries.cs │ │ │ │ ├── Stacked100LineSeries.cs │ │ │ │ ├── StackedAreaLineSeries.cs │ │ │ │ ├── StackedAreaSeries.cs │ │ │ │ ├── StackedBarColumnSeries.cs │ │ │ │ ├── StackedBarSeries.cs │ │ │ │ ├── StackedColumnSeries.cs │ │ │ │ └── StackedLineSeries.cs │ │ │ └── ValueMarginCoordinateAndOverlap.cs │ │ ├── Collections/ │ │ │ ├── LeftLeaningRedBlackTree.cs │ │ │ ├── MultipleDictionary.cs │ │ │ └── OrderedMultipleDictionary.cs │ │ ├── ColorExtensions.cs │ │ ├── DependencyPropertyAnimationHelper.cs │ │ ├── DesignerProperties.cs │ │ ├── DotNetProjects.DataVisualization.Toolkit.csproj │ │ ├── DotNetProjects.snk │ │ ├── EnumerableExtensions.cs │ │ ├── EnumerableFunctions.cs │ │ ├── GenericEqualityComparer.cs │ │ ├── GlobalSuppressions.cs │ │ ├── GridExtensions.cs │ │ ├── IResourceDictionaryDispenser.cs │ │ ├── LayoutTransformControl.cs │ │ ├── Legend/ │ │ │ └── Legend.cs │ │ ├── NoResetObservableCollection.cs │ │ ├── ObjectPool.cs │ │ ├── ObservableCollectionListAdapter.cs │ │ ├── OrientedPanel.cs │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ ├── Range.cs │ │ ├── RangeEnumerableFunctions.cs │ │ ├── ReadOnlyObservableCollection.cs │ │ ├── ResourceDictionaryCollection.cs │ │ ├── StoryboardQueue.cs │ │ ├── StringFormatConverter.cs │ │ ├── Themes/ │ │ │ └── generic.xaml │ │ ├── Title/ │ │ │ └── Title.cs │ │ ├── TreeMap/ │ │ │ ├── BindingExtractor.cs │ │ │ ├── Interpolators/ │ │ │ │ ├── DoubleInterpolator.cs │ │ │ │ ├── HSLSolidColorBrushInterpolator.cs │ │ │ │ ├── InterpolationMode.cs │ │ │ │ ├── Interpolator.cs │ │ │ │ ├── RangeInterpolator.cs │ │ │ │ └── SolidColorBrushInterpolator.cs │ │ │ ├── Layout/ │ │ │ │ ├── SquaringAlgorithm.cs │ │ │ │ └── TreeMapNode.cs │ │ │ ├── TreeMap.cs │ │ │ ├── TreeMapItemDefinition.cs │ │ │ └── TreeMapItemDefinitionSelector.cs │ │ ├── Tuple.cs │ │ ├── UniqueObservableCollection.cs │ │ ├── Unit.cs │ │ ├── UnitValue.cs │ │ ├── ValueHelper.cs │ │ ├── WeakEventListener.cs │ │ └── WeakReferenceBag.cs │ ├── DatePicker/ │ │ ├── Microsoft/ │ │ │ └── Windows/ │ │ │ ├── Automation/ │ │ │ │ └── Peers/ │ │ │ │ └── DatePickerAutomationPeer.cs │ │ │ └── Controls/ │ │ │ ├── DatePicker.cs │ │ │ ├── DatePickerDateValidationErrorEventArgs.cs │ │ │ ├── DatePickerFormat.cs │ │ │ └── DatePickerTextBox.cs │ │ └── Themes/ │ │ ├── Aero.NormalColor.xaml │ │ ├── Classic.xaml │ │ ├── Generic.xaml │ │ ├── Luna.HomeStead.xaml │ │ ├── Luna.Metallic.xaml │ │ ├── Luna.NormalColor.xaml │ │ └── Royale.NormalColor.xaml │ ├── GlobalSuppressions.cs │ ├── Input/ │ │ ├── AutoCompleteBox/ │ │ │ └── System/ │ │ │ └── Windows/ │ │ │ ├── Automation/ │ │ │ │ └── Peers/ │ │ │ │ └── AutoCompleteBoxAutomationPeer.cs │ │ │ └── Controls/ │ │ │ ├── AutoCompleteBox.cs │ │ │ ├── AutoCompleteFilter.cs │ │ │ ├── AutoCompleteFilterMode.cs │ │ │ ├── AutoCompleteFilterPredicate.cs │ │ │ ├── ISelectionAdapter.cs │ │ │ ├── ItemsControlExtensions.cs │ │ │ ├── PopulatedEventArgs.cs │ │ │ ├── PopulatedEventHandler.cs │ │ │ ├── PopulatingEventArgs.cs │ │ │ ├── PopulatingEventHandler.cs │ │ │ ├── PopupHelper.cs │ │ │ ├── RoutedPropertyChangingEventArgs.cs │ │ │ ├── RoutedPropertyChangingEventHandler.cs │ │ │ ├── SelectorSelectionAdapter.cs │ │ │ └── ValueByStringHelper.cs │ │ ├── DotNetProjects.Input.Toolkit.csproj │ │ ├── DotNetProjects.Input.Toolkit.csproj.DotSettings │ │ ├── DotNetProjects.snk │ │ ├── GlobalSuppressions.cs │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ ├── Rating/ │ │ │ └── System/ │ │ │ └── Windows/ │ │ │ ├── Automation/ │ │ │ │ └── Peers/ │ │ │ │ ├── RatingAutomationPeer.cs │ │ │ │ └── RatingItemAutomationPeer.cs │ │ │ └── Controls/ │ │ │ ├── Clipper.cs │ │ │ ├── EnumerableFunctions.cs │ │ │ ├── LinearClipper.cs │ │ │ ├── NullableConverter.cs │ │ │ ├── Rating.cs │ │ │ ├── RatingItem.cs │ │ │ ├── RatingSelectionMode.cs │ │ │ ├── Tuple.cs │ │ │ └── TupleExtensions.cs │ │ └── Themes/ │ │ └── Generic.xaml │ ├── Layout/ │ │ ├── Accordion/ │ │ │ └── System/ │ │ │ └── Windows/ │ │ │ ├── Automation/ │ │ │ │ └── Peers/ │ │ │ │ ├── AccordionAutomationPeer.cs │ │ │ │ ├── AccordionItemAutomationPeer.cs │ │ │ │ └── AccordionItemWrapperAutomationPeer.cs │ │ │ └── Controls/ │ │ │ ├── Accordion.cs │ │ │ ├── AccordionAction.cs │ │ │ ├── AccordionButton.cs │ │ │ ├── AccordionItem.cs │ │ │ ├── AccordionSelectionMode.cs │ │ │ ├── ExpandableContentControl.cs │ │ │ └── SelectionSequence.cs │ │ ├── DotNetProjects.Layout.Toolkit.csproj │ │ ├── DotNetProjects.snk │ │ ├── Extensions/ │ │ │ ├── MathExtensions.cs │ │ │ └── RectExtensions.cs │ │ ├── GlobalSuppressions.cs │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ ├── System.Windows.Controls.Layout.Toolkit.XML │ │ ├── Themes/ │ │ │ └── Generic.xaml │ │ ├── TransitioningContentControl/ │ │ │ └── System/ │ │ │ └── Windows/ │ │ │ └── Controls/ │ │ │ └── TransitioningContentControl.cs │ │ └── ZoomableCanvas/ │ │ ├── LinkedListExtensions.cs │ │ ├── PriorityQuadTree.cs │ │ ├── PriorityQueue.cs │ │ ├── VirtualPanel.cs │ │ └── ZoomableCanvas.cs │ ├── Resources/ │ │ ├── ExceptionStringTable.txt │ │ ├── SR.cs │ │ └── SRID.cs │ ├── Samples/ │ │ ├── Accordion/ │ │ │ ├── AccordionSample.xaml │ │ │ ├── AccordionSample.xaml.cs │ │ │ ├── AccordionShowcase.xaml │ │ │ ├── AccordionShowcase.xaml.cs │ │ │ ├── AccordionUsage.xaml │ │ │ └── AccordionUsage.xaml.cs │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AutoCompleteBox/ │ │ │ ├── AutoCompleteBoxSample.xaml │ │ │ ├── AutoCompleteBoxSample.xaml.cs │ │ │ ├── AutoCompleteComboBox.xaml │ │ │ ├── AutoCompleteComboBox.xaml.cs │ │ │ ├── AutoCompleteLambda.xaml │ │ │ ├── AutoCompleteLambda.xaml.cs │ │ │ ├── CustomEvents.xaml │ │ │ ├── CustomEvents.xaml.cs │ │ │ ├── DataGridAutoCompleteBox.xaml │ │ │ ├── DataGridAutoCompleteBox.xaml.cs │ │ │ ├── DataGridAutoCompleteBoxEdit.xaml │ │ │ ├── DataGridAutoCompleteBoxEdit.xaml.cs │ │ │ ├── DataGridSelectionAdapter.cs │ │ │ ├── DictionaryKeyValueConverter.cs │ │ │ ├── RandomEmployeeDetails.cs │ │ │ ├── SampleEmployeeCollection.cs │ │ │ ├── SearchSuggestionSample.xaml │ │ │ └── SearchSuggestionSample.xaml.cs │ │ ├── BlogPostData.xml │ │ ├── Common/ │ │ │ ├── BusinessObjects/ │ │ │ │ ├── Airport.cs │ │ │ │ ├── City.cs │ │ │ │ ├── Contact.cs │ │ │ │ ├── Customer.cs │ │ │ │ ├── CustomerList.cs │ │ │ │ ├── Department.cs │ │ │ │ ├── Employee.cs │ │ │ │ ├── Feature.cs │ │ │ │ ├── MemberInfoData.cs │ │ │ │ ├── ObjectCollection.cs │ │ │ │ ├── Photograph.cs │ │ │ │ └── Words.cs │ │ │ ├── GridLengthAnimation.cs │ │ │ ├── SharedResources.cs │ │ │ └── WebServiceHelper.cs │ │ ├── DataVisualisation/ │ │ │ ├── DataVisualisationSample.xaml │ │ │ ├── DataVisualisationSample.xaml.cs │ │ │ └── SampleDataVM.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Rating/ │ │ │ ├── RatingSample.xaml │ │ │ └── RatingSample.xaml.cs │ │ ├── Themes/ │ │ │ ├── ThemesExample.xaml │ │ │ └── ThemesExample.xaml.cs │ │ ├── TreeMap/ │ │ │ ├── BlogPost.cs │ │ │ ├── TreeMapIntroduction.xaml │ │ │ └── TreeMapIntroduction.xaml.cs │ │ ├── WPFToolkitSamples.csproj │ │ └── app.config │ ├── Themes/ │ │ ├── Aero.NormalColor.xaml │ │ ├── Classic.xaml │ │ ├── Generic.xaml │ │ ├── Luna.HomeStead.xaml │ │ ├── Luna.Metallic.xaml │ │ ├── Luna.NormalColor.xaml │ │ └── Royale.NormalColor.xaml │ ├── WPF.Themes/ │ │ ├── BubbleCreme/ │ │ │ └── Theme.xaml │ │ ├── BureauBlack/ │ │ │ └── Theme.xaml │ │ ├── BureauBlue/ │ │ │ └── Theme.xaml │ │ ├── DavesGlossyControls/ │ │ │ └── Theme.xaml │ │ ├── DotNetProjects.WPF.Themes.csproj │ │ ├── DotNetProjects.snk │ │ ├── ExpressionDark/ │ │ │ └── Theme.xaml │ │ ├── ExpressionLight/ │ │ │ └── Theme.xaml │ │ ├── IG/ │ │ │ ├── IG.MSControls.Toolkit.Implicit.xaml │ │ │ ├── Styles.Shared.xaml │ │ │ ├── Styles.WPF.xaml │ │ │ ├── Theme.Colors.xaml │ │ │ └── Theme.xaml │ │ ├── JetPack/ │ │ │ ├── Assets/ │ │ │ │ ├── Brushes.xaml │ │ │ │ ├── CoreStyles.xaml │ │ │ │ ├── Fonts.xaml │ │ │ │ ├── SdkStyles.xaml │ │ │ │ └── Styles.xaml │ │ │ ├── Helpers/ │ │ │ │ ├── DataGridCheckBoxColumnFixer.cs │ │ │ │ └── GridLengthAnimation.cs │ │ │ └── Theme.xaml │ │ ├── MetroDark/ │ │ │ ├── MetroDark.MSControls.Toolkit.Implicit.xaml │ │ │ ├── Styles.Shared.xaml │ │ │ ├── Styles.WPF.xaml │ │ │ ├── Theme.Colors.xaml │ │ │ └── Theme.xaml │ │ ├── MetroLight/ │ │ │ ├── Metro.MSControls.Toolkit.Implicit.xaml │ │ │ ├── Styles.Shared.xaml │ │ │ ├── Styles.WPF.xaml │ │ │ ├── Theme.Colors.xaml │ │ │ └── Theme.xaml │ │ ├── MoonUICore/ │ │ │ └── Theme.xaml │ │ ├── Office2010Blue/ │ │ │ ├── Office2010Blue.MSControls.Toolkit.Implicit.xaml │ │ │ ├── Styles.Shared.xaml │ │ │ ├── Styles.WPF.xaml │ │ │ ├── Theme.Colors.xaml │ │ │ └── Theme.xaml │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── RainierOrange/ │ │ │ └── Theme.xaml │ │ ├── RainierPurple/ │ │ │ └── Theme.xaml │ │ ├── RainierRadialBlue/ │ │ │ └── Theme.xaml │ │ ├── ShinyBlue/ │ │ │ └── Theme.xaml │ │ ├── ShinyDarkGreen/ │ │ │ └── Theme.xaml │ │ ├── ShinyDarkPurple/ │ │ │ └── Theme.xaml │ │ ├── ShinyDarkTeal/ │ │ │ └── Theme.xaml │ │ ├── ShinyRed/ │ │ │ └── Theme.xaml │ │ ├── SunnyOrange/ │ │ │ └── Theme.xaml │ │ ├── ThemeManager.cs │ │ ├── TwilightBlue/ │ │ │ └── Theme.xaml │ │ ├── UXMusingsBubblyBlue/ │ │ │ └── Theme.xaml │ │ ├── UXMusingsGreen/ │ │ │ └── Theme.xaml │ │ ├── UXMusingsRed/ │ │ │ └── Theme.xaml │ │ ├── UXMusingsRoughGreen/ │ │ │ └── Theme.xaml │ │ ├── UXMusingsRoughRed/ │ │ │ └── Theme.xaml │ │ └── WhistlerBlue/ │ │ └── Theme.xaml │ ├── WPFToolkit.sln │ └── WpfTest/ │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ └── WpfTest.csproj ├── appveyor.yml └── build.bat