gitextract_lif3ay9j/ ├── .github/ │ └── workflows/ │ ├── deploy.yml │ ├── publish.yml │ ├── release-tag.yml │ └── test.yml ├── .gitignore ├── DemoCenter/ │ ├── DemoCenter/ │ │ ├── App.axaml │ │ ├── App.axaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── DemoCenter.csproj │ │ ├── DemoData/ │ │ │ ├── ApparelProducts.cs │ │ │ ├── CsvClasses/ │ │ │ │ ├── CarInfo.cs │ │ │ │ ├── CsvClasses.cs │ │ │ │ ├── CsvColumnData.cs │ │ │ │ ├── StockInfo.cs │ │ │ │ └── StockProduct.cs │ │ │ ├── CsvSources.cs │ │ │ ├── ElementsSources.cs │ │ │ ├── EmployeesData.cs │ │ │ ├── Enums.cs │ │ │ ├── InfrastructureData.cs │ │ │ ├── OrderData.cs │ │ │ ├── ProjectTasksData.cs │ │ │ ├── SalesData.cs │ │ │ └── csv/ │ │ │ ├── Bitcoin Historical Data.csv │ │ │ ├── CarImages/ │ │ │ │ ├── convert.bat │ │ │ │ └── readme.txt │ │ │ ├── cars.csv │ │ │ ├── logarithmic.csv │ │ │ ├── mechs.csv │ │ │ ├── orgchat.csv │ │ │ ├── spacexlaunches.csv │ │ │ ├── stockProducts.csv │ │ │ ├── yachtNames.csv │ │ │ └── yachts.csv │ │ ├── Helpers/ │ │ │ ├── HeatmapHelper.cs │ │ │ └── ThemedSyntaxHighlighter.cs │ │ ├── ProductsData/ │ │ │ ├── BarsGroupInfo.cs │ │ │ ├── CartesianChartGroupInfo.cs │ │ │ ├── CommonControlsGroupInfo.cs │ │ │ ├── DataGridGroupInfo.cs │ │ │ ├── DeveloperToolsGroupInfo.cs │ │ │ ├── EditorsGroupInfo.cs │ │ │ ├── Graphics3DControlGroupInfo.cs │ │ │ ├── GroupInfo.cs │ │ │ ├── HeatmapGroupInfo.cs │ │ │ ├── PageInfo.cs │ │ │ ├── PolarChartGroupInfo.cs │ │ │ ├── ProductInfoBase.cs │ │ │ ├── Products.cs │ │ │ ├── PropertyGridGroupInfo.cs │ │ │ ├── RibbonGroupInfo.cs │ │ │ ├── SmithChartGroupInfo.cs │ │ │ ├── StandardControlsGroupInfo.cs │ │ │ ├── TreeListGroupInfo.cs │ │ │ └── UseCasesGroupInfo.cs │ │ ├── Resources/ │ │ │ ├── Colors.Dark.axaml │ │ │ ├── Colors.Light.axaml │ │ │ ├── Graphics3D/ │ │ │ │ └── Models/ │ │ │ │ └── robot_arm_2.fbx │ │ │ ├── Highlighters/ │ │ │ │ ├── Axaml-Highlight-Dark.xshd │ │ │ │ ├── Axaml-Highlight-Light.xshd │ │ │ │ ├── CSharp-Highlight-Dark.xshd │ │ │ │ └── CSharp-Highlight-Light.xshd │ │ │ ├── SearchPanel.axaml │ │ │ ├── SharedResources.axaml │ │ │ ├── SharedStyles.axaml │ │ │ ├── SvgIconsBrowserViewResources.Designer.cs │ │ │ └── SvgIconsBrowserViewResources.resx │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Resources.ru.resx │ │ ├── Resources.zh-Hans.resx │ │ ├── ViewLocator.cs │ │ ├── ViewModels/ │ │ │ ├── Bars/ │ │ │ │ ├── BarItemsPageViewModel.cs │ │ │ │ ├── BarsGroupViewModel.cs │ │ │ │ ├── BarsOverviewPageViewModel.cs │ │ │ │ ├── ContextMenuPageViewModel.cs │ │ │ │ └── ToolbarAndMenuPageViewModel.cs │ │ │ ├── Charts/ │ │ │ │ ├── CartesianAreaSeriesViewViewModel.cs │ │ │ │ ├── CartesianCandlestickAggregationViewModel.cs │ │ │ │ ├── CartesianCandlestickSeriesViewViewModel.cs │ │ │ │ ├── CartesianChartAxesPageViewModel.cs │ │ │ │ ├── CartesianChartLargeDataPageViewModel.cs │ │ │ │ ├── CartesianChartLogarithmicScalePageViewModel.cs │ │ │ │ ├── CartesianChartRealtimePageViewModel.cs │ │ │ │ ├── CartesianEmptyPointsViewModel.cs │ │ │ │ ├── CartesianFullStackedAreaSeriesViewViewModel.cs │ │ │ │ ├── CartesianLineSeriesViewViewModel.cs │ │ │ │ ├── CartesianLollipopSeriesViewViewModel.cs │ │ │ │ ├── CartesianPointSeriesViewViewModel.cs │ │ │ │ ├── CartesianRangeAreaSeriesViewViewModel.cs │ │ │ │ ├── CartesianScatterLineSeriesViewViewModel.cs │ │ │ │ ├── CartesianSideBySideBarSeriesViewViewModel.cs │ │ │ │ ├── CartesianSideBySideRangeBarSeriesViewViewModel.cs │ │ │ │ ├── CartesianStackedAreaSeriesViewViewModel.cs │ │ │ │ ├── CartesianStepAreaSeriesViewViewModel.cs │ │ │ │ ├── CartesianStepLineSeriesViewViewModel.cs │ │ │ │ ├── CartesianStripsAndConstantLinesViewModel.cs │ │ │ │ ├── ChartElementViewModels/ │ │ │ │ │ ├── AxisViewModel.cs │ │ │ │ │ ├── ConstantLineViewModel.cs │ │ │ │ │ ├── CustomLabelFormatter.cs │ │ │ │ │ ├── LogarithmicAxisViewModel.cs │ │ │ │ │ ├── SeriesViewModel.cs │ │ │ │ │ └── ViewViewModel.cs │ │ │ │ ├── ChartsPageViewModel.cs │ │ │ │ ├── Data/ │ │ │ │ │ ├── ClusterDataAdapter.cs │ │ │ │ │ ├── RealtimeDataGenerator.cs │ │ │ │ │ └── SmithSampleDataAdapter.cs │ │ │ │ ├── HeatmapColorProvidersViewModel.cs │ │ │ │ ├── HeatmapRealTimeViewModel.cs │ │ │ │ ├── PolarAreaSeriesViewViewModel.cs │ │ │ │ ├── PolarEmptyPointsViewModel.cs │ │ │ │ ├── PolarLineSeriesViewViewModel.cs │ │ │ │ ├── PolarPointSeriesViewViewModel.cs │ │ │ │ ├── PolarRangeAreaSeriesViewViewModel.cs │ │ │ │ ├── PolarScatterLineSeriesViewViewModel.cs │ │ │ │ ├── PolarStripsAndConstantLinesViewModel.cs │ │ │ │ ├── SmithLineSeriesViewViewModel.cs │ │ │ │ └── SmithPointSeriesViewViewModel.cs │ │ │ ├── CommonControls/ │ │ │ │ ├── CommonControlsGroupViewModel.cs │ │ │ │ ├── MessageBoxPageViewModel.cs │ │ │ │ ├── SplitContainerControlPageViewModel.cs │ │ │ │ └── TabControlPageViewModel.cs │ │ │ ├── DataGrid/ │ │ │ │ ├── DataGridColumnBandsViewModel.cs │ │ │ │ ├── DataGridDataEditorsViewModel.cs │ │ │ │ ├── DataGridDragDropPageViewModel.cs │ │ │ │ ├── DataGridExportViewModel.cs │ │ │ │ ├── DataGridFilteringViewModel.cs │ │ │ │ ├── DataGridFixedColuimnsViewModel.cs │ │ │ │ ├── DataGridGroupingPageViewModel.cs │ │ │ │ ├── DataGridLargeDataPageViewModel.cs │ │ │ │ ├── DataGridLiveDataPageViewModel.cs │ │ │ │ ├── DataGridMultipleSelectionPageViewModel.cs │ │ │ │ ├── DataGridPageViewModel.cs │ │ │ │ ├── DataGridRowAutoHeightViewModel.cs │ │ │ │ └── DataGridValidationViewModel.cs │ │ │ ├── DesktopOnlyViewModel.cs │ │ │ ├── DockManager/ │ │ │ │ └── IdeLayoutPageViewModel.cs │ │ │ ├── Editors/ │ │ │ │ ├── ColorEditorPageViewModel.cs │ │ │ │ ├── ComboBoxEditorPageViewModel.cs │ │ │ │ ├── DateEditorPageViewModel.cs │ │ │ │ ├── EditorsGroupViewModel.cs │ │ │ │ ├── EditorsOverviewPageViewModel.cs │ │ │ │ ├── EnumSourcePageViewModel.cs │ │ │ │ ├── HyperlinkEditorPageViewModel.cs │ │ │ │ ├── MemoEditorPageViewModel.cs │ │ │ │ ├── SegmentedEditorPageViewModel.cs │ │ │ │ ├── SpinEditorPageViewModel.cs │ │ │ │ └── TextEditingPageViewModel.cs │ │ │ ├── Graphics3DControl/ │ │ │ │ ├── Graphics3DControlCameraViewModel.cs │ │ │ │ ├── Graphics3DControlHighlightingViewModel.cs │ │ │ │ ├── Graphics3DControlLightsViewModel.cs │ │ │ │ ├── Graphics3DControlLinesViewModel.cs │ │ │ │ ├── Graphics3DControlOverviewViewModel.cs │ │ │ │ ├── Graphics3DControlPointsViewModel.cs │ │ │ │ ├── Graphics3DControlRobotArmViewModel.cs │ │ │ │ ├── Graphics3DControlSimpleMaterialsViewModel.cs │ │ │ │ ├── Graphics3DControlSkyboxViewModel.cs │ │ │ │ ├── Graphics3DControlStlViewModel.cs │ │ │ │ ├── Graphics3DControlTexturedMaterialsViewModel.cs │ │ │ │ ├── Graphics3DControlTransformationViewModel.cs │ │ │ │ ├── Graphics3DControlViewModel.cs │ │ │ │ ├── MeshViewModel.cs │ │ │ │ └── Model3DLoader.cs │ │ │ ├── MainViewModel.cs │ │ │ ├── PageViewModelBase.cs │ │ │ ├── PropertyGrid/ │ │ │ │ ├── PropertyGridDataEditorsViewModel.cs │ │ │ │ ├── PropertyGridGroupViewModel.cs │ │ │ │ └── PropertyGridTabItemsViewModel.cs │ │ │ ├── Ribbon/ │ │ │ │ ├── RibbonGroupViewModel.cs │ │ │ │ └── WordPadExampleViewModel.cs │ │ │ ├── StandardControls/ │ │ │ │ ├── PrimitivesPageViewModel.cs │ │ │ │ ├── ProgressBarPageViewModel.cs │ │ │ │ ├── SliderPageViewModel.cs │ │ │ │ ├── StandardControlsGroupViewModel.cs │ │ │ │ ├── StandardControlsOverviewPageViewModel.cs │ │ │ │ └── UseCasesGroupViewModel.cs │ │ │ ├── Tools/ │ │ │ │ ├── DeveloperToolsGroupViewModel.cs │ │ │ │ └── SvgIconsBrowserViewModel.cs │ │ │ ├── TreeList/ │ │ │ │ ├── FolderBrowserPageViewModel.cs │ │ │ │ ├── TreeListColumnBandsViewModel.cs │ │ │ │ ├── TreeListDataEditorsPageViewModel.cs │ │ │ │ ├── TreeListExportViewModel.cs │ │ │ │ ├── TreeListFilteringPageViewModel.cs │ │ │ │ ├── TreeListGroupViewModel.cs │ │ │ │ └── TreeListMultipleSelectionPageViewModel.cs │ │ │ └── UseCases/ │ │ │ └── FinancialServices/ │ │ │ ├── MortgageCalculatorViewModel.cs │ │ │ └── SampleMortgageCalculator.cs │ │ ├── Views/ │ │ │ ├── Bars/ │ │ │ │ ├── BarItemsPageView.axaml │ │ │ │ ├── BarItemsPageView.axaml.cs │ │ │ │ ├── BarsGroupView.axaml │ │ │ │ ├── BarsGroupView.axaml.cs │ │ │ │ ├── BarsOverviewPageView.axaml │ │ │ │ ├── BarsOverviewPageView.axaml.cs │ │ │ │ ├── ContextMenuPageView.axaml │ │ │ │ ├── ContextMenuPageView.axaml.cs │ │ │ │ ├── Helpers/ │ │ │ │ │ ├── Converters.cs │ │ │ │ │ ├── ScaleDecorator.cs │ │ │ │ │ └── TextBoxHelper.cs │ │ │ │ ├── ToolbarAndMenuPageView.axaml │ │ │ │ └── ToolbarAndMenuPageView.axaml.cs │ │ │ ├── Charts/ │ │ │ │ ├── CartesianAreaSeriesViewView.axaml │ │ │ │ ├── CartesianAreaSeriesViewView.axaml.cs │ │ │ │ ├── CartesianCandlestickAggregationView.axaml │ │ │ │ ├── CartesianCandlestickAggregationView.axaml.cs │ │ │ │ ├── CartesianCandlestickSeriesViewView.axaml │ │ │ │ ├── CartesianCandlestickSeriesViewView.axaml.cs │ │ │ │ ├── CartesianChartAxesPageView.axaml │ │ │ │ ├── CartesianChartAxesPageView.axaml.cs │ │ │ │ ├── CartesianChartLargeDataPageView.axaml │ │ │ │ ├── CartesianChartLargeDataPageView.axaml.cs │ │ │ │ ├── CartesianChartLogarithmicScalePageView.axaml │ │ │ │ ├── CartesianChartLogarithmicScalePageView.axaml.cs │ │ │ │ ├── CartesianChartRealtimePageView.axaml │ │ │ │ ├── CartesianChartRealtimePageView.axaml.cs │ │ │ │ ├── CartesianEmptyPointsView.axaml │ │ │ │ ├── CartesianEmptyPointsView.axaml.cs │ │ │ │ ├── CartesianFullStackedAreaSeriesViewView.axaml │ │ │ │ ├── CartesianFullStackedAreaSeriesViewView.axaml.cs │ │ │ │ ├── CartesianLineSeriesViewView.axaml │ │ │ │ ├── CartesianLineSeriesViewView.axaml.cs │ │ │ │ ├── CartesianLollipopSeriesViewView.axaml │ │ │ │ ├── CartesianLollipopSeriesViewView.axaml.cs │ │ │ │ ├── CartesianPointSeriesViewView.axaml │ │ │ │ ├── CartesianPointSeriesViewView.axaml.cs │ │ │ │ ├── CartesianRangeAreaSeriesViewView.axaml │ │ │ │ ├── CartesianRangeAreaSeriesViewView.axaml.cs │ │ │ │ ├── CartesianScatterLineSeriesViewView.axaml │ │ │ │ ├── CartesianScatterLineSeriesViewView.axaml.cs │ │ │ │ ├── CartesianSideBySideBarSeriesViewView.axaml │ │ │ │ ├── CartesianSideBySideBarSeriesViewView.axaml.cs │ │ │ │ ├── CartesianSideBySideRangeBarSeriesViewView.axaml │ │ │ │ ├── CartesianSideBySideRangeBarSeriesViewView.axaml.cs │ │ │ │ ├── CartesianStackedAreaSeriesViewView.axaml │ │ │ │ ├── CartesianStackedAreaSeriesViewView.axaml.cs │ │ │ │ ├── CartesianStepAreaSeriesViewView.axaml │ │ │ │ ├── CartesianStepAreaSeriesViewView.axaml.cs │ │ │ │ ├── CartesianStepLineSeriesViewView.axaml │ │ │ │ ├── CartesianStepLineSeriesViewView.axaml.cs │ │ │ │ ├── CartesianStripsAndConstantLinesView.axaml │ │ │ │ ├── CartesianStripsAndConstantLinesView.axaml.cs │ │ │ │ ├── HeatmapColorProvidersView.axaml │ │ │ │ ├── HeatmapColorProvidersView.axaml.cs │ │ │ │ ├── HeatmapRealTimeView.axaml │ │ │ │ ├── HeatmapRealTimeView.axaml.cs │ │ │ │ ├── PolarAreaSeriesViewView.axaml │ │ │ │ ├── PolarAreaSeriesViewView.axaml.cs │ │ │ │ ├── PolarEmptyPointsView.axaml │ │ │ │ ├── PolarEmptyPointsView.axaml.cs │ │ │ │ ├── PolarLineSeriesViewView.axaml │ │ │ │ ├── PolarLineSeriesViewView.axaml.cs │ │ │ │ ├── PolarPointSeriesViewView.axaml │ │ │ │ ├── PolarPointSeriesViewView.axaml.cs │ │ │ │ ├── PolarRangeAreaSeriesViewView.axaml │ │ │ │ ├── PolarRangeAreaSeriesViewView.axaml.cs │ │ │ │ ├── PolarScatterLineSeriesViewView.axaml │ │ │ │ ├── PolarScatterLineSeriesViewView.axaml.cs │ │ │ │ ├── PolarStripsAndConstantLinesView.axaml │ │ │ │ ├── PolarStripsAndConstantLinesView.axaml.cs │ │ │ │ ├── SmithLineSeriesViewView.axaml │ │ │ │ ├── SmithLineSeriesViewView.axaml.cs │ │ │ │ ├── SmithPointSeriesViewView.axaml │ │ │ │ └── SmithPointSeriesViewView.axaml.cs │ │ │ ├── CommonControls/ │ │ │ │ ├── CommonControlsGroupView.axaml │ │ │ │ ├── CommonControlsGroupView.axaml.cs │ │ │ │ ├── MessageBoxPageView.axaml │ │ │ │ ├── MessageBoxPageView.axaml.cs │ │ │ │ ├── SplitContainerControlPageView.axaml │ │ │ │ ├── SplitContainerControlPageView.axaml.cs │ │ │ │ ├── TabControlPageView.axaml │ │ │ │ └── TabControlPageView.axaml.cs │ │ │ ├── Converters/ │ │ │ │ └── EnumRadioButtonConverter.cs │ │ │ ├── DataGrid/ │ │ │ │ ├── DataGridColumnBandsView.axaml │ │ │ │ ├── DataGridColumnBandsView.axaml.cs │ │ │ │ ├── DataGridDataEditorsView.axaml │ │ │ │ ├── DataGridDataEditorsView.axaml.cs │ │ │ │ ├── DataGridDragDropPageView.axaml │ │ │ │ ├── DataGridDragDropPageView.axaml.cs │ │ │ │ ├── DataGridExportView.axaml │ │ │ │ ├── DataGridExportView.axaml.cs │ │ │ │ ├── DataGridFilteringView.axaml │ │ │ │ ├── DataGridFilteringView.axaml.cs │ │ │ │ ├── DataGridFixedColumnsView.axaml │ │ │ │ ├── DataGridFixedColumnsView.axaml.cs │ │ │ │ ├── DataGridGroupingPageView.axaml │ │ │ │ ├── DataGridGroupingPageView.axaml.cs │ │ │ │ ├── DataGridLargeDataView.axaml │ │ │ │ ├── DataGridLargeDataView.axaml.cs │ │ │ │ ├── DataGridLiveDataPageView.axaml │ │ │ │ ├── DataGridLiveDataPageView.axaml.cs │ │ │ │ ├── DataGridMultipleSelectionPageView.axaml │ │ │ │ ├── DataGridMultipleSelectionPageView.axaml.cs │ │ │ │ ├── DataGridPageView.axaml │ │ │ │ ├── DataGridPageView.axaml.cs │ │ │ │ ├── DataGridRowAutoHeightView.axaml │ │ │ │ ├── DataGridRowAutoHeightView.axaml.cs │ │ │ │ ├── DataGridValidationView.axaml │ │ │ │ └── DataGridValidationView.axaml.cs │ │ │ ├── DesktopOnlyView.axaml │ │ │ ├── DesktopOnlyView.axaml.cs │ │ │ ├── DockManager/ │ │ │ │ ├── IdeLayoutPageView.axaml │ │ │ │ └── IdeLayoutPageView.axaml.cs │ │ │ ├── Editors/ │ │ │ │ ├── ColorEditorPageView.axaml │ │ │ │ ├── ColorEditorPageView.axaml.cs │ │ │ │ ├── ComboBoxEditorPageView.axaml │ │ │ │ ├── ComboBoxEditorPageView.axaml.cs │ │ │ │ ├── DateEditorPageView.axaml │ │ │ │ ├── DateEditorPageView.axaml.cs │ │ │ │ ├── EditorsGroupView.axaml │ │ │ │ ├── EditorsGroupView.axaml.cs │ │ │ │ ├── EditorsOverviewPageView.axaml │ │ │ │ ├── EditorsOverviewPageView.axaml.cs │ │ │ │ ├── EnumSourcePageView.axaml │ │ │ │ ├── EnumSourcePageView.axaml.cs │ │ │ │ ├── HyperlinkEditorPageView.axaml │ │ │ │ ├── HyperlinkEditorPageView.axaml.cs │ │ │ │ ├── MemoEditorPageView.axaml │ │ │ │ ├── MemoEditorPageView.axaml.cs │ │ │ │ ├── SegmentedEditorPageView.axaml │ │ │ │ ├── SegmentedEditorPageView.axaml.cs │ │ │ │ ├── SpinEditorPageView.axaml │ │ │ │ ├── SpinEditorPageView.axaml.cs │ │ │ │ ├── TextEditingPageView.axaml │ │ │ │ └── TextEditingPageView.axaml.cs │ │ │ ├── Export/ │ │ │ │ ├── DemoExportHelper.cs │ │ │ │ ├── ExportProgressControl.axaml │ │ │ │ └── ExportProgressControl.axaml.cs │ │ │ ├── Graphics3DControl/ │ │ │ │ ├── Graphics3DControlCameraView.axaml │ │ │ │ ├── Graphics3DControlCameraView.axaml.cs │ │ │ │ ├── Graphics3DControlHighlightingView.axaml │ │ │ │ ├── Graphics3DControlHighlightingView.axaml.cs │ │ │ │ ├── Graphics3DControlLightsView.axaml │ │ │ │ ├── Graphics3DControlLightsView.axaml.cs │ │ │ │ ├── Graphics3DControlLinesView.axaml │ │ │ │ ├── Graphics3DControlLinesView.axaml.cs │ │ │ │ ├── Graphics3DControlOverviewView.axaml │ │ │ │ ├── Graphics3DControlOverviewView.axaml.cs │ │ │ │ ├── Graphics3DControlPointsView.axaml │ │ │ │ ├── Graphics3DControlPointsView.axaml.cs │ │ │ │ ├── Graphics3DControlRobotArmView.axaml │ │ │ │ ├── Graphics3DControlRobotArmView.axaml.cs │ │ │ │ ├── Graphics3DControlSimpleMaterialsView.axaml │ │ │ │ ├── Graphics3DControlSimpleMaterialsView.axaml.cs │ │ │ │ ├── Graphics3DControlSkyboxView.axaml │ │ │ │ ├── Graphics3DControlSkyboxView.axaml.cs │ │ │ │ ├── Graphics3DControlStlView.axaml │ │ │ │ ├── Graphics3DControlStlView.axaml.cs │ │ │ │ ├── Graphics3DControlTexturedMaterialsView.axaml │ │ │ │ ├── Graphics3DControlTexturedMaterialsView.axaml.cs │ │ │ │ ├── Graphics3DControlTransformationView.axaml │ │ │ │ └── Graphics3DControlTransformationView.axaml.cs │ │ │ ├── MainView.axaml │ │ │ ├── MainView.axaml.cs │ │ │ ├── MainWindow.axaml │ │ │ ├── MainWindow.axaml.cs │ │ │ ├── PropertyGrid/ │ │ │ │ ├── PropertyGridDataEditorsView.axaml │ │ │ │ ├── PropertyGridDataEditorsView.axaml.cs │ │ │ │ ├── PropertyGridGroupView.axaml │ │ │ │ ├── PropertyGridGroupView.axaml.cs │ │ │ │ ├── PropertyGridTabItemsView.axaml │ │ │ │ ├── PropertyGridTabItemsView.axaml.cs │ │ │ │ └── Utils/ │ │ │ │ └── ContentControlPropertiesWrapper.cs │ │ │ ├── Ribbon/ │ │ │ │ ├── FontStyleGalleryItemForegroundConverter.cs │ │ │ │ ├── WordPadExampleView.axaml │ │ │ │ └── WordPadExampleView.axaml.cs │ │ │ ├── StandardControls/ │ │ │ │ ├── PrimitivesPageView.axaml │ │ │ │ ├── PrimitivesPageView.axaml.cs │ │ │ │ ├── ProgressBarPageView.axaml │ │ │ │ ├── ProgressBarPageView.axaml.cs │ │ │ │ ├── SliderPageView.axaml │ │ │ │ ├── SliderPageView.axaml.cs │ │ │ │ ├── StandardControlsGroupView.axaml │ │ │ │ ├── StandardControlsGroupView.axaml.cs │ │ │ │ ├── StandardControlsOverviewPageView.axaml │ │ │ │ └── StandardControlsOverviewPageView.axaml.cs │ │ │ ├── Tools/ │ │ │ │ ├── SvgIconsBrowserView.axaml │ │ │ │ ├── SvgIconsBrowserView.axaml.cs │ │ │ │ └── Templates/ │ │ │ │ ├── svgCodeExample.cs │ │ │ │ └── svgXamlExample.axaml │ │ │ ├── TreeList/ │ │ │ │ ├── FolderBrowserPageView.axaml │ │ │ │ ├── FolderBrowserPageView.axaml.cs │ │ │ │ ├── TreeListColumnBandsView.axaml │ │ │ │ ├── TreeListColumnBandsView.axaml.cs │ │ │ │ ├── TreeListDataEditorsPageView.axaml │ │ │ │ ├── TreeListDataEditorsPageView.axaml.cs │ │ │ │ ├── TreeListExportView.axaml │ │ │ │ ├── TreeListExportView.axaml.cs │ │ │ │ ├── TreeListFilteringPageView.axaml │ │ │ │ ├── TreeListFilteringPageView.axaml.cs │ │ │ │ ├── TreeListGroupView.axaml │ │ │ │ ├── TreeListGroupView.axaml.cs │ │ │ │ ├── TreeListMultipleSelectionPageView.axaml │ │ │ │ └── TreeListMultipleSelectionPageView.axaml.cs │ │ │ └── UseCases/ │ │ │ └── FinancialServices/ │ │ │ ├── MortgageCalculatorView.axaml │ │ │ └── MortgageCalculatorView.axaml.cs │ │ └── emxLicense.cs │ ├── DemoCenter.Android/ │ │ ├── DemoCenter.Android.csproj │ │ ├── MainActivity.cs │ │ ├── Properties/ │ │ │ └── AndroidManifest.xml │ │ └── Resources/ │ │ ├── AboutResources.txt │ │ ├── drawable/ │ │ │ └── splash_screen.xml │ │ ├── drawable-night-v31/ │ │ │ └── avalonia_anim.xml │ │ ├── drawable-v31/ │ │ │ └── avalonia_anim.xml │ │ ├── values/ │ │ │ ├── colors.xml │ │ │ └── styles.xml │ │ ├── values-night/ │ │ │ └── colors.xml │ │ └── values-v31/ │ │ └── styles.xml │ ├── DemoCenter.Desktop/ │ │ ├── AssemblyInfo.cs │ │ ├── DemoCenter.Desktop.csproj │ │ ├── Program.cs │ │ └── app.manifest │ ├── DemoCenter.Mobile.sln │ ├── DemoCenter.WASM.sln │ ├── DemoCenter.Web/ │ │ ├── DemoCenter.Web.csproj │ │ ├── Program.cs │ │ ├── Properties/ │ │ │ └── launchSettings.json │ │ ├── runtimeconfig.template.json │ │ └── wwwroot/ │ │ ├── app.css │ │ ├── index.html │ │ └── main.js │ ├── DemoCenter.iOS/ │ │ ├── AppDelegate.cs │ │ ├── DemoCenter.iOS.csproj │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── Main.cs │ │ └── Resources/ │ │ └── LaunchScreen.xib │ └── DemoCenter.sln ├── Directory.Build.props ├── Directory.Packages.props ├── License.md ├── Tests/ │ ├── DemoCenter.Desktop.UI.Tests/ │ │ ├── AvaloniaApp.cs │ │ ├── AvaloniaUiTestFramework.cs │ │ ├── DemoCenter.Desktop.UI.Tests.csproj │ │ ├── DemoCenter.Desktop.UI.Tests.sln │ │ ├── ModulesShowTests.cs │ │ ├── NativeInputHelper.cs │ │ ├── TestMouseEventsHelper.cs │ │ ├── V11TestUtils.cs │ │ └── emxLicense.cs │ ├── Directory.Build.targets │ ├── Eremex.ruleset │ └── stylecop.json ├── docs/ │ ├── charts.md │ ├── commoncontrols.md │ ├── datagrid.md │ ├── docking.md │ ├── editors.md │ ├── graphics3dcontrol.md │ ├── heatmap.md │ ├── images/ │ │ ├── controls-dark.snag │ │ └── controls-light.snag │ ├── propertygrid.md │ ├── ribbon.md │ ├── toolbars.md │ └── treelist.md └── readme.md