├── .github └── PULL_REQUEST_TEMPLATE │ ├── Bug.md │ ├── Default.md │ ├── Feature.md │ └── Sample.md ├── .gitignore ├── Install.ps1 ├── Jenkinsfile ├── NuGet.Config ├── README.md ├── RepositoryInfo.json ├── SB ├── App.ico ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ ├── Tiles │ │ ├── LargeTile.scale-100.png │ │ ├── LargeTile.scale-200.png │ │ ├── LargeTile.scale-400.png │ │ ├── SmallTile.scale-100.png │ │ ├── SmallTile.scale-200.png │ │ ├── SmallTile.scale-400.png │ │ ├── SplashScreen.scale-100.png │ │ ├── SplashScreen.scale-125.png │ │ ├── SplashScreen.scale-150.png │ │ ├── SplashScreen.scale-200.png │ │ ├── SplashScreen.scale-400.png │ │ ├── Square150x150Logo.scale-100.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square150x150Logo.scale-400.png │ │ ├── Square44x44Logo.scale-100.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.scale-400.png │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-125.png │ │ ├── StoreLogo.scale-150.png │ │ ├── StoreLogo.scale-200.png │ │ ├── StoreLogo.scale-400.png │ │ ├── Wide310x150Logo.scale-100.png │ │ ├── Wide310x150Logo.scale-200.png │ │ └── Wide310x150Logo.scale-400.png │ └── Wide310x150Logo.scale-200.png ├── MainPage.xaml ├── MainPage.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Package.appxmanifest ├── Products.xml ├── Properties │ ├── AssemblyInfo.cs │ ├── Default.rd.xml │ ├── PublishProfiles │ │ ├── win-arm64.pubxml │ │ ├── win-x64.pubxml │ │ └── win-x86.pubxml │ └── launchSettings.json ├── SampleBrowser.WinUI_Net80.csproj ├── SampleBrowser.WinUI_Net80.sln ├── SampleBrowser.WinUI_Net90.csproj ├── SampleBrowser.WinUI_Net90.sln ├── SampleConfiguration.cs ├── app.manifest ├── syncfusion.pfx └── syncfusion.samplebrowser.props ├── avatarview ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── AvatarView │ │ ├── Finley.png │ │ ├── Gabriella.png │ │ ├── Jayden.png │ │ ├── Michael.png │ │ ├── Oscar.png │ │ ├── Person1.png │ │ ├── Sarah.png │ │ ├── Victoriya.png │ │ ├── gettingstarted_xaml.txt │ │ └── groupview_xaml.txt │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Model │ └── Model.cs ├── Package.appxmanifest ├── Properties │ ├── AssemblyInfo.cs │ ├── Default.rd.xml │ ├── PublishProfiles │ │ ├── win10-arm64.pubxml │ │ ├── win10-x64.pubxml │ │ └── win10-x86.pubxml │ └── launchSettings.json ├── SamplesConfiguration.cs ├── Syncfusion.AvatarViewDemos.WinUI.csproj ├── Syncfusion.AvatarViewDemos.WinUI.sln ├── Syncfusion.AvatarViewDemos.WinUI_Net80.csproj ├── Syncfusion.AvatarViewDemos.WinUI_Net80.sln ├── Syncfusion.AvatarViewDemos.WinUI_Net90.csproj ├── Syncfusion.AvatarViewDemos.WinUI_Net90.sln ├── ViewModel │ ├── AvatarViewModel.cs │ └── ViewModel.cs ├── Views │ ├── GettingStartedView.xaml │ ├── GettingStartedView.xaml.cs │ ├── GroupView.xaml │ └── GroupView.xaml.cs ├── app.manifest └── syncfusion.avatarview.props ├── barcode ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Model │ └── BarcodeModel.cs ├── Package.appxmanifest ├── Properties │ ├── AssemblyInfo.cs │ ├── Default.rd.xml │ ├── PublishProfiles │ │ ├── win10-arm64.pubxml │ │ ├── win10-x64.pubxml │ │ └── win10-x86.pubxml │ └── launchSettings.json ├── SamplesConfiguration.cs ├── Syncfusion.BarcodeDemos.WinUI.csproj ├── Syncfusion.BarcodeDemos.WinUI.sln ├── Syncfusion.BarcodeDemos.WinUI_Net80.csproj ├── Syncfusion.BarcodeDemos.WinUI_Net80.sln ├── Syncfusion.BarcodeDemos.WinUI_Net90.csproj ├── Syncfusion.BarcodeDemos.WinUI_Net90.sln ├── ViewModel │ └── BarcodeViewModel.cs ├── Views │ ├── BarcodeDemoPage.xaml │ └── BarcodeDemoPage.xaml.cs ├── app.manifest ├── syncfusion.barcode.props └── syncfusion.barcodedemos.winui_TemporaryKey.pfx ├── build ├── build.cake ├── build.ps1 ├── git.cake ├── prebuild.ps1 └── tools │ └── packages.config ├── calendar ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── Cal │ │ ├── BlackoutDates_cs.txt │ │ ├── BlackoutDates_xaml.txt │ │ ├── CalendarTypes_xaml.txt │ │ ├── DateNavigation_xaml.txt │ │ ├── Formatting_xaml.txt │ │ ├── ItemTemplateSelector_cs.txt │ │ ├── ItemTemplateSelector_xaml.txt │ │ ├── SimpleCalendar_xaml.txt │ │ ├── ThemeKeyCustomization_xaml.txt │ │ └── WeekNumber_xaml.txt │ ├── CalDP │ │ ├── BlackoutDates_cs.txt │ │ ├── BlackoutDates_xaml.txt │ │ ├── CalendarTypes_xaml.txt │ │ ├── Formatting_xaml.txt │ │ ├── ItemTemplateSelector_cs.txt │ │ ├── ItemTemplateSelector_xaml.txt │ │ ├── Navigation_xaml.txt │ │ ├── SimpleCalendarDatePicker_xaml.txt │ │ └── ThemeKeyCustomization_xaml.txt │ ├── CalDRP │ │ ├── BlackoutDates_cs.txt │ │ ├── BlackoutDates_xaml.txt │ │ ├── CalendarTypes_xaml.txt │ │ ├── DateRangePicker_xaml.txt │ │ ├── Formatting_xaml.txt │ │ ├── ItemTemplateSelector_cs.txt │ │ ├── ItemTemplateSelector_xaml.txt │ │ ├── Navigation_xaml.txt │ │ ├── Preset_xaml.txt │ │ ├── RangeSelection_xaml.txt │ │ └── ThemeKeyCustomization_xaml.txt │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── Converter │ └── DateFormatToDisplayFormatConverter.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Package.appxmanifest ├── Properties │ ├── AssemblyInfo.cs │ ├── Default.rd.xml │ ├── PublishProfiles │ │ ├── win10-arm64.pubxml │ │ ├── win10-x64.pubxml │ │ └── win10-x86.pubxml │ └── launchSettings.json ├── SamplesConfiguration.cs ├── Syncfusion.CalendarDemos.WinUI.csproj ├── Syncfusion.CalendarDemos.WinUI.sln ├── Syncfusion.CalendarDemos.WinUI_Net80.csproj ├── Syncfusion.CalendarDemos.WinUI_Net80.sln ├── Syncfusion.CalendarDemos.WinUI_Net90.csproj ├── Syncfusion.CalendarDemos.WinUI_Net90.sln ├── ViewModel │ └── CalendarViewModel.cs ├── Views │ ├── Calendar │ │ ├── CalendarView.xaml │ │ ├── CalendarView.xaml.cs │ │ ├── Customization.xaml │ │ ├── Customization.xaml.cs │ │ ├── Resources │ │ │ └── CustomCalendarItemTemplateSelector.cs │ │ ├── StylesAndTemplates.xaml │ │ └── StylesAndTemplates.xaml.cs │ ├── CalendarDatePicker │ │ ├── CalendarDatePickerView.xaml │ │ ├── CalendarDatePickerView.xaml.cs │ │ ├── Customization.xaml │ │ └── Customization.xaml.cs │ └── CalendarDateRangePicker │ │ ├── CalendarDateRangePickerView.xaml │ │ ├── CalendarDateRangePickerView.xaml.cs │ │ ├── Customization.xaml │ │ └── Customization.xaml.cs ├── app.manifest ├── syncfusion.calendar.props └── syncfusion.calendardemos.winui_TemporaryKey.pfx ├── chart ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── Chart │ │ ├── Rolls-Royce.png │ │ ├── audi.png │ │ ├── benz.png │ │ ├── bmw.png │ │ ├── jaguar.png │ │ ├── skoda.png │ │ └── volvo.png │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── Converter │ ├── BarTopConverter.cs │ ├── ColumnPointsConverter.cs │ ├── ColumnPointsConverter1.cs │ ├── ColumnPointsConverter2.cs │ ├── DoughnutLabelConverter.cs │ ├── HorizontalAlignmentValueConverter.cs │ ├── LegendConverter.cs │ ├── OffsetValueConverter.cs │ ├── ScatterAdornmentConverter.cs │ ├── ScatterAdornmentForegroundConverter.cs │ ├── ScatterAngleConverter.cs │ ├── ScatterInteriorConverter.cs │ ├── SplineValueConverter.cs │ ├── TrackConverter.cs │ └── VerticalAlignmentValueConverter.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Package.appxmanifest ├── Properties │ ├── AssemblyInfo.cs │ ├── Default.rd.xml │ ├── PublishProfiles │ │ ├── win10-arm64.pubxml │ │ ├── win10-x64.pubxml │ │ └── win10-x86.pubxml │ └── launchSettings.json ├── Resources │ ├── ColorModel.xaml │ └── ColorModelResource.cs ├── SamplesConfiguration.cs ├── Syncfusion.ChartDemos.WinUI.csproj ├── Syncfusion.ChartDemos.WinUI.sln ├── Syncfusion.ChartDemos.WinUI_Net80.csproj ├── Syncfusion.ChartDemos.WinUI_Net80.sln ├── Syncfusion.ChartDemos.WinUI_Net90.csproj ├── Syncfusion.ChartDemos.WinUI_Net90.sln ├── Views │ ├── Cartesian Charts │ │ ├── Area │ │ │ ├── AreaChart.xaml │ │ │ ├── AreaChart.xaml.cs │ │ │ └── AreaViewModel │ │ │ │ ├── AreaChartModel.cs │ │ │ │ └── AreaChartViewModel.cs │ │ ├── Axis │ │ │ ├── AxisViewModel │ │ │ │ ├── ChartAxisModel.cs │ │ │ │ ├── ChartAxisViewModel.cs │ │ │ │ ├── DateTimeAxisViewModel.cs │ │ │ │ └── LogarithmicAxisViewModel.cs │ │ │ ├── CategoryAxis.xaml │ │ │ ├── CategoryAxis.xaml.cs │ │ │ ├── DateTimeAxis.xaml │ │ │ ├── DateTimeAxis.xaml.cs │ │ │ ├── LogarithmicAxis.xaml │ │ │ ├── LogarithmicAxis.xaml.cs │ │ │ ├── NumericalAxis.xaml │ │ │ └── NumericalAxis.xaml.cs │ │ ├── Bar │ │ │ ├── BarChart.xaml │ │ │ ├── BarChart.xaml.cs │ │ │ ├── BarRoundedEdge.xaml │ │ │ ├── BarRoundedEdge.xaml.cs │ │ │ ├── BarViewModel │ │ │ │ ├── BarChartModel.cs │ │ │ │ └── BarChartViewModel.cs │ │ │ ├── BarWidthCustomization.xaml │ │ │ └── BarWidthCustomization.xaml.cs │ │ ├── Bubble │ │ │ ├── BubbleChart.xaml │ │ │ ├── BubbleChart.xaml.cs │ │ │ ├── BubbleViewModel │ │ │ │ ├── BubbleChartModel.cs │ │ │ │ └── BubbleChartViewModel.cs │ │ │ ├── MultipleColorBubbleSeries.xaml │ │ │ └── MultipleColorBubbleSeries.xaml.cs │ │ ├── CartesianLegend │ │ │ ├── CartesianLegendToggle.xaml │ │ │ ├── CartesianLegendToggle.xaml.cs │ │ │ ├── CartesianLegendViewModel │ │ │ │ ├── LegendModel.cs │ │ │ │ └── LegendViewModel.cs │ │ │ ├── Cartesian_Legend.xaml │ │ │ └── Cartesian_Legend.xaml.cs │ │ ├── Column │ │ │ ├── ColumnChart.xaml │ │ │ ├── ColumnChart.xaml.cs │ │ │ ├── ColumnRoundedEdges.xaml │ │ │ ├── ColumnRoundedEdges.xaml.cs │ │ │ ├── ColumnViewModel │ │ │ │ ├── ColumnChartModel.cs │ │ │ │ └── ColumnChartViewModel.cs │ │ │ ├── ColumnWidthCustomization.xaml │ │ │ └── ColumnWidthCustomization.xaml.cs │ │ ├── FastCharts │ │ │ ├── FastChartsViewModel │ │ │ │ ├── FastColumnChartModel.cs │ │ │ │ ├── FastColumnChartViewModel.cs │ │ │ │ ├── FastLineChartModel.cs │ │ │ │ ├── FastLineChartViewModel.cs │ │ │ │ ├── FastScatterChartViewModel.cs │ │ │ │ └── FastScatterModel.cs │ │ │ ├── FastColumnChart.xaml │ │ │ ├── FastColumnChart.xaml.cs │ │ │ ├── FastLineChart.xaml │ │ │ ├── FastLineChart.xaml.cs │ │ │ ├── FastScatterChart.xaml │ │ │ ├── FastScatterChart.xaml.cs │ │ │ ├── FastStepLineChart.xaml │ │ │ └── FastStepLineChart.xaml.cs │ │ ├── InteractiveSupport │ │ │ ├── Crosshair.xaml │ │ │ ├── Crosshair.xaml.cs │ │ │ ├── DataPointSelection.xaml │ │ │ ├── DataPointSelection.xaml.cs │ │ │ ├── InteractiveViewModel │ │ │ │ ├── CrosshairModel.cs │ │ │ │ ├── CrosshairViewModel.cs │ │ │ │ ├── SelectionChartModel.cs │ │ │ │ ├── SelectionChartViewModel.cs │ │ │ │ ├── ToolTipModel.cs │ │ │ │ ├── TooltipViewModel.cs │ │ │ │ ├── TrackballModel.cs │ │ │ │ ├── TrackballViewModel.cs │ │ │ │ ├── ZoomingModel.cs │ │ │ │ └── ZoomingViewModel.cs │ │ │ ├── SeriesSelection.xaml │ │ │ ├── SeriesSelection.xaml.cs │ │ │ ├── Tooltip.xaml │ │ │ ├── Tooltip.xaml.cs │ │ │ ├── Trackball.xaml │ │ │ ├── Trackball.xaml.cs │ │ │ ├── ZoomPanBehavior.xaml │ │ │ └── ZoomPanBehavior.xaml.cs │ │ ├── Line │ │ │ ├── DashedLineChart.xaml │ │ │ ├── DashedLineChart.xaml.cs │ │ │ ├── LineChart.xaml │ │ │ ├── LineChart.xaml.cs │ │ │ └── LineViewModel │ │ │ │ ├── LineChartModel.cs │ │ │ │ └── LineChartViewModel.cs │ │ ├── Scatter │ │ │ ├── ScatterChart.xaml │ │ │ ├── ScatterChart.xaml.cs │ │ │ └── ScatterViewModel │ │ │ │ ├── ScatterChartModel.cs │ │ │ │ └── ScatterChartViewModel.cs │ │ ├── Series Template │ │ │ ├── CustomScatterSeries.xaml │ │ │ ├── CustomScatterSeries.xaml.cs │ │ │ ├── CustomSplineSeries.xaml │ │ │ ├── CustomSplineSeries.xaml.cs │ │ │ └── SeriesTemplateViewModel │ │ │ │ ├── DataValuesSpline.cs │ │ │ │ ├── ScatterDataValues.cs │ │ │ │ ├── ViewModelScatter.cs │ │ │ │ └── ViewModelSpline.cs │ │ ├── SmartComponents │ │ │ └── DataPreprocessing │ │ │ │ ├── AIService │ │ │ │ └── DataPreprocessingAIService.cs │ │ │ │ ├── AzureAIService.cs │ │ │ │ ├── Model │ │ │ │ └── DataPreprocessingModel.cs │ │ │ │ ├── View │ │ │ │ ├── DataCleaning_Preprocessing.xaml │ │ │ │ └── DataCleaning_Preprocessing.xaml.cs │ │ │ │ └── ViewModel │ │ │ │ └── DataPreprocessingViewModel.cs │ │ ├── Spline │ │ │ ├── DashedSplineChart.xaml │ │ │ ├── DashedSplineChart.xaml.cs │ │ │ ├── SplineChart.xaml │ │ │ ├── SplineChart.xaml.cs │ │ │ └── SplineViewModel │ │ │ │ ├── SplineChartModel.cs │ │ │ │ └── SplineChartViewModel.cs │ │ ├── SplineArea │ │ │ ├── SplineAreaChart.xaml │ │ │ ├── SplineAreaChart.xaml.cs │ │ │ └── SplineAreaViewModel │ │ │ │ ├── SplineAreaChartModel.cs │ │ │ │ └── SplineAreaChartViewModel.cs │ │ ├── Stacked100Chart │ │ │ ├── Stacked100ViewModel │ │ │ │ ├── Stacking100ChartModel.cs │ │ │ │ └── Stacking100ChartViewModel.cs │ │ │ ├── StackingArea100Chart.xaml │ │ │ ├── StackingArea100Chart.xaml.cs │ │ │ ├── StackingColumn100Chart.xaml │ │ │ ├── StackingColumn100Chart.xaml.cs │ │ │ ├── StackingLine100Chart.xaml │ │ │ └── StackingLine100Chart.xaml.cs │ │ ├── StackedCharts │ │ │ ├── Grouping.xaml │ │ │ ├── Grouping.xaml.cs │ │ │ ├── StackedViewModel │ │ │ │ ├── StackedChartModel.cs │ │ │ │ └── StackedChartViewModel.cs │ │ │ ├── StackingAreaChart.xaml │ │ │ ├── StackingAreaChart.xaml.cs │ │ │ ├── StackingColumnChart.xaml │ │ │ ├── StackingColumnChart.xaml.cs │ │ │ ├── StackingLineChart.xaml │ │ │ └── StackingLineChart.xaml.cs │ │ ├── StepArea │ │ │ ├── StepAreaChart.xaml │ │ │ ├── StepAreaChart.xaml.cs │ │ │ └── StepAreaViewModel │ │ │ │ ├── StepAreaChartModel.cs │ │ │ │ └── StepAreaChartViewModel.cs │ │ └── StepLine │ │ │ ├── DottedStepLine.xaml │ │ │ ├── DottedStepLine.xaml.cs │ │ │ ├── StepLineChart.xaml │ │ │ ├── StepLineChart.xaml.cs │ │ │ ├── StepLineViewModel │ │ │ ├── StepLineChartModel.cs │ │ │ └── StepLineChartViewModel.cs │ │ │ ├── VerticalStepLine.xaml │ │ │ └── VerticalStepLine.xaml.cs │ ├── Circular Charts │ │ ├── CircularViewModel │ │ │ ├── DoughnutChartModel.cs │ │ │ ├── DoughnutChartViewModel.cs │ │ │ ├── InteractionModel.cs │ │ │ ├── InteractionViewModel.cs │ │ │ ├── PieChartModel.cs │ │ │ └── PieChartViewModel.cs │ │ ├── Doughnut │ │ │ ├── DoughnutChart.xaml │ │ │ ├── DoughnutChart.xaml.cs │ │ │ ├── SemiDoughnutChart.xaml │ │ │ └── SemiDoughnutChart.xaml.cs │ │ ├── Interaction │ │ │ ├── CircularSelection.xaml │ │ │ ├── CircularSelection.xaml.cs │ │ │ ├── CircularTooltip.xaml │ │ │ └── CircularTooltip.xaml.cs │ │ ├── Legend │ │ │ ├── CircularLegend.xaml │ │ │ ├── CircularLegend.xaml.cs │ │ │ ├── CircularLegendToggle.xaml │ │ │ └── CircularLegendToggle.xaml.cs │ │ └── Pie │ │ │ ├── PieChart.xaml │ │ │ ├── PieChart.xaml.cs │ │ │ ├── SemiPieChart.xaml │ │ │ └── SemiPieChart.xaml.cs │ ├── Funnel Charts │ │ ├── DefaultFunnelChart.xaml │ │ ├── DefaultFunnelChart.xaml.cs │ │ ├── FunnelLegend.xaml │ │ ├── FunnelLegend.xaml.cs │ │ ├── FunnelTooltip.xaml │ │ ├── FunnelTooltip.xaml.cs │ │ └── FunnelViewModel │ │ │ ├── FunnelChartModel.cs │ │ │ └── FunnelChartViewModel.cs │ ├── Polar Charts │ │ ├── PolarArea.xaml │ │ ├── PolarArea.xaml.cs │ │ ├── PolarLine.xaml │ │ ├── PolarLine.xaml.cs │ │ └── PolarViewModel │ │ │ ├── PolarChartModel.cs │ │ │ └── PolarChartViewModel.cs │ └── Pyramid Charts │ │ ├── DefaultPyramidChart.xaml │ │ ├── DefaultPyramidChart.xaml.cs │ │ ├── PyramidLegend.xaml │ │ ├── PyramidLegend.xaml.cs │ │ ├── PyramidTooltip.xaml │ │ ├── PyramidTooltip.xaml.cs │ │ └── PyramidViewModel │ │ ├── PyramidChartModel.cs │ │ └── PyramidChartViewModel.cs ├── app.manifest ├── syncfusion.chart.props └── syncfusion.chartdemos.winui_TemporaryKey.pfx ├── chat ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── Chat │ │ ├── Feed_Image.png │ │ ├── aiassistview_xaml.txt │ │ ├── composeview_xaml.txt │ │ └── overview_xaml.txt │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Package.appxmanifest ├── Properties │ ├── AssemblyInfo.cs │ ├── Default.rd.xml │ ├── PublishProfiles │ │ ├── win10-arm64.pubxml │ │ ├── win10-x64.pubxml │ │ └── win10-x86.pubxml │ └── launchSettings.json ├── SamplesConfiguration.cs ├── Syncfusion.ChatDemos.WinUI.csproj ├── Syncfusion.ChatDemos.WinUI.sln ├── Syncfusion.ChatDemos.WinUI_Net80.csproj ├── Syncfusion.ChatDemos.WinUI_Net80.sln ├── Syncfusion.ChatDemos.WinUI_Net90.csproj ├── Syncfusion.ChatDemos.WinUI_Net90.sln ├── ViewModel │ ├── AIAssistViewModel.cs │ ├── ComposeViewModel.cs │ └── OverviewViewModel.cs ├── Views │ ├── AssistView.xaml │ ├── AssistView.xaml.cs │ ├── ComposeView.xaml │ ├── ComposeView.xaml.cs │ ├── Overview.xaml │ └── Overview.xaml.cs ├── app.manifest └── syncfusion.chat.props ├── common ├── Assets │ ├── BannerImage.jpg │ ├── BannerImageDesktop.png │ ├── Control Images │ │ ├── AIAssistView.png │ │ ├── AutoComplete.png │ │ ├── AvatarView.png │ │ ├── Badge.png │ │ ├── Barcode.png │ │ ├── BusyIndicator.png │ │ ├── Calendar.png │ │ ├── CalendarDatePicker.png │ │ ├── CalendarDateRangePicker.png │ │ ├── CartesianChart.png │ │ ├── Chat.png │ │ ├── CircularChart.png │ │ ├── ColorPalette.png │ │ ├── ColorPicker.png │ │ ├── ComboBox.png │ │ ├── DataGrid.png │ │ ├── DatePicker.png │ │ ├── DocIO.png │ │ ├── DropDownColorPalette.png │ │ ├── DropDownColorPicker.png │ │ ├── FunnelChart.png │ │ ├── Kanban.png │ │ ├── LinearGauge.png │ │ ├── NumberBox.png │ │ ├── PDF.png │ │ ├── PolarChart.png │ │ ├── Presentation.png │ │ ├── PyramidChart.png │ │ ├── RadialGauge.png │ │ ├── RangeSlider.png │ │ ├── Rating.png │ │ ├── Ribbon.png │ │ ├── Scheduler.png │ │ ├── SegmentedControl.png │ │ ├── SfMaskedTextBox.png │ │ ├── SfShimmer.png │ │ ├── Shadow.png │ │ ├── Slider.png │ │ ├── SmartAISolution.png │ │ ├── TimePicker.png │ │ ├── TreeGrid.png │ │ ├── TreeView.png │ │ └── XlsIO.png │ ├── ControlIcons.ttf │ └── SBIcons.ttf ├── Converter │ ├── BadgeToStringConverter.cs │ └── StringToGeometryConverter.cs ├── Enum │ └── CommonEnums.cs ├── Helper │ ├── AISettings.cs │ ├── Constants.cs │ ├── DemoFilter.cs │ ├── DemoHelper.cs │ ├── EnumValuesExtension.cs │ ├── FileLoader.cs │ ├── FilePathExtension.cs │ ├── ImagePathExtension.cs │ ├── NavigationItemTemplateSelector.cs │ ├── NavigationService.cs │ └── ThemeHelper.cs ├── Model │ ├── BrowserModel.cs │ ├── ControlInfo.cs │ ├── DemoInfo.cs │ ├── DemoInfoDataSource.cs │ ├── ITileInfo.cs │ ├── NavigationMenuItemTemplateSelector.cs │ └── WrapPanel.cs ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml ├── Syncfusion.DemosCommon.WinUI_lib_Net80.csproj ├── Syncfusion.DemosCommon.WinUI_lib_Net80.sln ├── Syncfusion.DemosCommon.WinUI_lib_Net90.csproj ├── Syncfusion.DemosCommon.WinUI_lib_Net90.sln ├── Themes │ └── themeresources.xaml ├── ViewModel │ └── MainViewModel.cs ├── Views │ ├── AISettingsWindow.xaml │ ├── AISettingsWindow.xaml.cs │ ├── DemoLayout.xaml │ ├── DemoLayout.xaml.cs │ ├── DemoPage.xaml │ ├── DemoPage.xaml.cs │ ├── DemoPageLoadingIndicator.xaml │ ├── DemoPageLoadingIndicator.xaml.cs │ ├── HeaderTile.xaml │ ├── HeaderTile.xaml.cs │ ├── HomePageHeaderImage.xaml │ ├── HomePageHeaderImage.xaml.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── SectionGroupPage.xaml │ ├── SectionGroupPage.xaml.cs │ ├── SectionPage.xaml │ ├── SectionPage.xaml.cs │ ├── SettingsPage.xaml │ ├── SettingsPage.xaml.cs │ ├── TileGallery.xaml │ └── TileGallery.xaml.cs └── syncfusion.demoscommon.props ├── datagrid ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── Helpers │ ├── AIFilterPredicate.cs │ ├── Comparer.cs │ ├── Converters.cs │ └── Selector.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Model │ ├── Employee.cs │ ├── EmployeeInfo.cs │ ├── OrderInfo.cs │ ├── Person.cs │ └── Sales.cs ├── Package.appxmanifest ├── Properties │ ├── AssemblyInfo.cs │ ├── Default.rd.xml │ ├── PublishProfiles │ │ ├── win10-arm64.pubxml │ │ ├── win10-x64.pubxml │ │ └── win10-x86.pubxml │ └── launchSettings.json ├── SamplesConfiguration.cs ├── Service │ └── AzureAIService.cs ├── Syncfusion.DataGridDemos.WinUI.csproj ├── Syncfusion.DataGridDemos.WinUI.sln ├── Syncfusion.DataGridDemos.WinUI_Net80.csproj ├── Syncfusion.DataGridDemos.WinUI_Net80.sln ├── Syncfusion.DataGridDemos.WinUI_Net90.csproj ├── Syncfusion.DataGridDemos.WinUI_Net90.sln ├── ViewModel │ ├── DataBindingViewModel.cs │ ├── EmployeeInfoViewModel.cs │ ├── EmployeeViewModel.cs │ ├── OrderInfoViewModel.cs │ ├── PersonViewModel.cs │ └── SalesViewModel.cs ├── Views │ ├── AIFilterPredicatesDemo.xaml │ ├── AIFilterPredicatesDemo.xaml.cs │ ├── AdvanceFilter.xaml │ ├── AdvanceFilter.xaml.cs │ ├── AutoRowHeight.xaml │ ├── AutoRowHeight.xaml.cs │ ├── ClipboardOperation.xaml │ ├── ClipboardOperation.xaml.cs │ ├── ColumnSizer.xaml │ ├── ColumnSizer.xaml.cs │ ├── ConditionalStyling.xaml │ ├── ConditionalStyling.xaml.cs │ ├── ContextFlyout.xaml │ ├── ContextFlyout.xaml.cs │ ├── CustomGrouping.xaml │ ├── CustomGrouping.xaml.cs │ ├── CustomValidation.xaml │ ├── CustomValidation.xaml.cs │ ├── DataBinding.xaml │ ├── DataBinding.xaml.cs │ ├── DataValidation.xaml │ ├── DataValidation.xaml.cs │ ├── DynamicObjectsBinding.xaml │ ├── DynamicObjectsBinding.xaml.cs │ ├── Editing.xaml │ ├── Editing.xaml.cs │ ├── ExcelExporting.xaml │ ├── ExcelExporting.xaml.cs │ ├── FilterRow.xaml │ ├── FilterRow.xaml.cs │ ├── Filtering.xaml │ ├── Filtering.xaml.cs │ ├── FreezePanes.xaml │ ├── FreezePanes.xaml.cs │ ├── GettingStarted.xaml │ ├── GettingStarted.xaml.cs │ ├── Grouping.xaml │ ├── Grouping.xaml.cs │ ├── ListBinding.xaml │ ├── ListBinding.xaml.cs │ ├── MasterDetailsView.xaml │ ├── MasterDetailsView.xaml.cs │ ├── ObservableCollectionBinding.xaml │ ├── ObservableCollectionBinding.xaml.cs │ ├── Printing.xaml │ ├── Printing.xaml.cs │ ├── Resources │ │ ├── Search.xaml │ │ └── SearchControl.cs │ ├── RowDragDrop.xaml │ ├── RowDragDrop.xaml.cs │ ├── SearchPanel.xaml │ ├── SearchPanel.xaml.cs │ ├── Selection.xaml │ ├── Selection.xaml.cs │ ├── Serialization.xaml │ ├── Serialization.xaml.cs │ ├── Sorting.xaml │ ├── Sorting.xaml.cs │ ├── StackedHeader.xaml │ ├── StackedHeader.xaml.cs │ ├── Styling.xaml │ ├── Styling.xaml.cs │ ├── Summaries.xaml │ ├── Summaries.xaml.cs │ ├── UnboundColumns.xaml │ ├── UnboundColumns.xaml.cs │ ├── UnboundRows.xaml │ └── UnboundRows.xaml.cs ├── app.manifest ├── syncfusion.datagrid.props └── syncfusion.datagriddemos.winui_TemporaryKey.pfx ├── docio ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── DocIO │ │ ├── Adventure.docx │ │ ├── AdventureCycle.png │ │ ├── Andrew Fuller.png │ │ ├── Bookmarks_cs.txt │ │ ├── CompareDocuments_cs.txt │ │ ├── CreateSmartArtInput.docx │ │ ├── CreateSmartArt_cs.txt │ │ ├── CreateUsingLaTeX_cs.txt │ │ ├── Decrypt.docx │ │ ├── DocumentProtection_cs.txt │ │ ├── EditEquationLaTeXInput.docx │ │ ├── EditSmartArtInput.docx │ │ ├── EditSmartArt_cs.txt │ │ ├── EditUsingLaTeX_cs.txt │ │ ├── EmployeeReport_cs.txt │ │ ├── Employees.xml │ │ ├── EmployeesList.xml │ │ ├── EmployeesReportDemo.docx │ │ ├── EncryptAndDecrypt_cs.txt │ │ ├── FindAndHighlight_cs.txt │ │ ├── FindAndReplace_cs.txt │ │ ├── HTMLToWord.html │ │ ├── HTMLToWord_cs.txt │ │ ├── HeaderAndFooter_cs.txt │ │ ├── HeaderFooterTemplate.docx │ │ ├── HeaderImage.png │ │ ├── HelloWorld_cs.txt │ │ ├── ImageInsertion_cs.txt │ │ ├── Janet Leverling.png │ │ ├── MarkdownToWord.md │ │ ├── MarkdownToWord_cs.txt │ │ ├── Mountain200.jpg │ │ ├── Mountain300.bmp │ │ ├── Mountain300.jpg │ │ ├── Nancy Davolio.png │ │ ├── Northwindlogo.png │ │ ├── OrderTotals.xml │ │ ├── OrdersReport_cs.txt │ │ ├── OriginalDocument.docx │ │ ├── RTFConversion_cs.txt │ │ ├── RTFtoWord.rtf │ │ ├── RevisedDocument.docx │ │ ├── Road550W.jpg │ │ ├── SalesInvoiceDemo.docx │ │ ├── SalesInvoice_cs.txt │ │ ├── TableOfContent_cs.txt │ │ ├── TableOfFiguresInput.docx │ │ ├── TableOfFigures_cs.txt │ │ ├── TemplateLetter.docx │ │ ├── TemplateReading.docx │ │ ├── TestOrder.xml │ │ ├── TestOrderDetails.xml │ │ ├── WordToHTML.docx │ │ ├── WordToHTML_cs.txt │ │ ├── WordToMarkdown_cs.txt │ │ ├── WordToPDF_cs.txt │ │ ├── WordtoMD.docx │ │ └── WordtoPDF.docx │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── Helpers │ └── SaveHelper.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Package.appxmanifest ├── Properties │ ├── AssemblyInfo.cs │ ├── Default.rd.xml │ ├── PublishProfiles │ │ ├── win10-arm64.pubxml │ │ ├── win10-x64.pubxml │ │ └── win10-x86.pubxml │ └── launchSettings.json ├── SamplesConfiguration.cs ├── Syncfusion.DocIODemos.WinUI.csproj ├── Syncfusion.DocIODemos.WinUI.sln ├── Syncfusion.DocIODemos.WinUI_Net80.csproj ├── Syncfusion.DocIODemos.WinUI_Net80.sln ├── Syncfusion.DocIODemos.WinUI_Net90.csproj ├── Syncfusion.DocIODemos.WinUI_Net90.sln ├── Views │ ├── Bookmarks.xaml │ ├── Bookmarks.xaml.cs │ ├── CompareDocuments.xaml │ ├── CompareDocuments.xaml.cs │ ├── CreateSmartArt.xaml │ ├── CreateSmartArt.xaml.cs │ ├── CreateUsingLaTeX.xaml │ ├── CreateUsingLaTeX.xaml.cs │ ├── DocumentProtection.xaml │ ├── DocumentProtection.xaml.cs │ ├── EditSmartArt.xaml │ ├── EditSmartArt.xaml.cs │ ├── EditUsingLaTeX.xaml │ ├── EditUsingLaTeX.xaml.cs │ ├── EmployeeReport.xaml │ ├── EmployeeReport.xaml.cs │ ├── EncryptAndDecrypt.xaml │ ├── EncryptAndDecrypt.xaml.cs │ ├── FindAndHighlight.xaml │ ├── FindAndHighlight.xaml.cs │ ├── FindAndReplace.xaml │ ├── FindAndReplace.xaml.cs │ ├── HTMLToWord.xaml │ ├── HTMLToWord.xaml.cs │ ├── HeaderAndFooter.xaml │ ├── HeaderAndFooter.xaml.cs │ ├── HelloWorld.xaml │ ├── HelloWorld.xaml.cs │ ├── ImageInsertion.xaml │ ├── ImageInsertion.xaml.cs │ ├── MarkdownToWord.xaml │ ├── MarkdownToWord.xaml.cs │ ├── OrdersReport.xaml │ ├── OrdersReport.xaml.cs │ ├── RTFConversion.xaml │ ├── RTFConversion.xaml.cs │ ├── SalesInvoice.xaml │ ├── SalesInvoice.xaml.cs │ ├── TableOfContent.xaml │ ├── TableOfContent.xaml.cs │ ├── TableOfFigures.xaml │ ├── TableOfFigures.xaml.cs │ ├── WordToHTML.xaml │ ├── WordToHTML.xaml.cs │ ├── WordToMarkdown.xaml │ ├── WordToMarkdown.xaml.cs │ ├── WordToPDF.xaml │ └── WordToPDF.xaml.cs ├── app.manifest ├── syncfusion.docio.props └── syncfusion.dociodemos.winui_TemporaryKey.pfx ├── editor ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── AutoComplete │ │ ├── AutoAppend_xaml.txt │ │ ├── CustomAsyncFilter_cs.txt │ │ ├── CustomAsyncFilter_xaml.txt │ │ ├── CustomFilter_cs.txt │ │ ├── CustomFilter_xaml.txt │ │ ├── CustomSearch_cs.txt │ │ ├── CustomSearch_xaml.txt │ │ ├── Customization_xaml.txt │ │ ├── GettingStarted_xaml.txt │ │ ├── Grouping_cs.txt │ │ ├── Grouping_xaml.txt │ │ ├── Highlighting_xaml.txt │ │ ├── LeadingAndTrailingView_xaml.txt │ │ ├── LeadingView_xaml.txt │ │ ├── MultiSelectionTokenTemplate_xaml.txt │ │ ├── MultiSelection_xaml.txt │ │ ├── StandardFiltering_xaml.txt │ │ └── TrailingView_xaml.txt │ ├── ColorPalette │ │ ├── PaletteProperties_xaml.txt │ │ ├── SimpleColorPalette_xaml.txt │ │ └── StandardProperties_xaml.txt │ ├── ColorPicker │ │ ├── ColorPickerModes_xaml.txt │ │ └── SolidColorPicker_xaml.txt │ ├── ComboBox │ │ ├── AutoAppend_xaml.txt │ │ ├── Cascading_xaml.txt │ │ ├── CityFilteringBehavior_cs.txt │ │ ├── CityFilteringBehaviour_cs.txt │ │ ├── CitySearchingBehaviour_cs .txt │ │ ├── CustomFiltering_xaml.txt │ │ ├── Customization_xaml.txt │ │ ├── Editing_xaml.txt │ │ ├── Employees │ │ │ ├── Employee1.png │ │ │ ├── Employee10.png │ │ │ ├── Employee2.png │ │ │ ├── Employee3.png │ │ │ ├── Employee4.png │ │ │ ├── Employee5.png │ │ │ ├── Employee6.png │ │ │ ├── Employee7.png │ │ │ ├── Employee8.png │ │ │ ├── Employee9.png │ │ │ └── NewEmployee.png │ │ ├── Filtering_xaml.txt │ │ ├── GettingStarted_xaml.txt │ │ ├── Grouping_cs.txt │ │ ├── Grouping_xaml.txt │ │ ├── Highlighting_xaml.txt │ │ ├── LeadingAndTrailingView_xaml.txt │ │ ├── LeadingView_xaml.txt │ │ ├── MultiSelectionBoxItemTemplate_cs.txt │ │ ├── MultiSelectionBoxItemTemplate_xaml.txt │ │ ├── MultiSelection_xaml.txt │ │ ├── Searching_xaml.txt │ │ ├── SelectionBoxItemTemplate_xaml.txt │ │ ├── TokenCustomization_xaml.txt │ │ └── TrailingView_xaml.txt │ ├── DDColorPalette │ │ ├── DropDownColorPalette_xaml.txt │ │ └── SplitMode_xaml.txt │ ├── DDColorPicker │ │ ├── DropDownColorPicker_xaml.txt │ │ ├── GradientBrushType_xaml.txt │ │ └── SplitMode_xaml.txt │ ├── DatePicker │ │ ├── BlackoutDateTemplate_cs.txt │ │ ├── BlackoutDateTemplate_xaml.txt │ │ ├── CustomFormatString_cs.txt │ │ ├── CustomFormatString_xaml.txt │ │ ├── DateTimeFormatting_xaml.txt │ │ ├── DropdownHeaderTemplate_xaml.txt │ │ ├── ExcludeWeekEndDates_cs.txt │ │ ├── ExcludeWeekEndDates_xaml.txt │ │ ├── FlightBookingOnline_cs.txt │ │ ├── FlightBookingOnline_xaml.txt │ │ ├── ItemContainerStyle_cs.txt │ │ ├── ItemContainerStyle_xaml.txt │ │ ├── ItemCustomization_xaml.txt │ │ ├── ItemTemplateSelector_cs.txt │ │ ├── ItemTemplateSelector_xaml.txt │ │ ├── SimpleDatePicker_xaml.txt │ │ └── ViewCustomization_xaml.txt │ ├── LockScreenLogo.scale-200.png │ ├── MaskedTextBox │ │ ├── CustomIcon.png │ │ ├── customerrortype_xaml.txt │ │ ├── errortype_xaml.txt │ │ ├── errortype_xaml_cs.txt │ │ ├── gettingstarted_xaml.txt │ │ ├── inputvalidation_xaml.txt │ │ ├── inputvalidation_xaml_cs.txt │ │ └── literalsandprompt_xaml.txt │ ├── NumberBox │ │ ├── Basque.png │ │ ├── Culture_xaml.txt │ │ ├── Formatting_xaml.txt │ │ ├── GettingStarted_xaml.txt │ │ ├── India.png │ │ ├── Mexico.png │ │ ├── Portugal.png │ │ ├── Russia.png │ │ ├── TextBoxVisibility_xaml.txt │ │ ├── UnitedKingdom.png │ │ ├── UnitedStates.png │ │ ├── china.png │ │ ├── france.png │ │ └── turkey.png │ ├── Rating │ │ ├── ExcitedSelected.png │ │ ├── ExcitedUnselected.png │ │ ├── HappySelected.png │ │ ├── HappyUnselected.png │ │ ├── NeutralSelected.png │ │ ├── NeutralUnselected.png │ │ ├── SadSelected.png │ │ ├── SadUnselected.png │ │ ├── UnhappySelected.png │ │ ├── UnhappyUnselected.png │ │ ├── customimage_xaml.txt │ │ ├── custompath_xaml.txt │ │ ├── customview_xaml.txt │ │ ├── defaultstyle_xaml.txt │ │ ├── imagetemplateselector_cs.txt │ │ ├── pathtemplateselector_cs.txt │ │ └── viewtemplateselector_cs.txt │ ├── SegCtrl │ │ ├── customization_xaml.txt │ │ ├── defaultsegmented_xaml.txt │ │ ├── imagewithtext_xaml.txt │ │ └── topborder_xaml.txt │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ ├── TimePicker │ │ ├── DropdownHeaderTemplate_xaml.txt │ │ ├── ItemCustomization_xaml.txt │ │ ├── ItemTemplateSelector_cs.txt │ │ ├── ItemTemplateSelector_xaml.txt │ │ ├── SimpleTimePicker_xaml.txt │ │ ├── TimeFormatting_xaml.txt │ │ ├── TimePickerMinutesInterval_xaml.txt │ │ └── ViewCustomization_xaml.txt │ └── Wide310x150Logo.scale-200.png ├── Converters │ ├── FormatToStringConverter.cs │ ├── StringToEnumConverter.cs │ ├── StringToPathConverter.cs │ ├── TemperatureConverter.cs │ └── VisiblityConverter.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Model │ ├── ListModel.cs │ ├── NumberBoxModel.cs │ └── SegmentedModel.cs ├── Package.appxmanifest ├── Properties │ ├── AssemblyInfo.cs │ ├── Default.rd.xml │ ├── PublishProfiles │ │ ├── win10-arm64.pubxml │ │ ├── win10-x64.pubxml │ │ └── win10-x86.pubxml │ └── launchSettings.json ├── SamplesConfiguration.cs ├── Syncfusion.EditorDemos.WinUI.csproj ├── Syncfusion.EditorDemos.WinUI.sln ├── Syncfusion.EditorDemos.WinUI_Net80.csproj ├── Syncfusion.EditorDemos.WinUI_Net80.sln ├── Syncfusion.EditorDemos.WinUI_Net90.csproj ├── Syncfusion.EditorDemos.WinUI_Net90.sln ├── ViewModel │ ├── ColorPaletteViewModel.cs │ ├── ColorPickerViewModel.cs │ ├── DatePickerViewModel.cs │ ├── DropDownColorPaletteViewModel.cs │ ├── DropDownColorPickerViewModel.cs │ ├── ListViewModel.cs │ ├── NumberBoxViewModel.cs │ ├── SegmentedViewModel.cs │ └── TimePickerViewModel.cs ├── Views │ ├── AutoComplete │ │ ├── AutoAppend.xaml │ │ ├── AutoAppend.xaml.cs │ │ ├── Filtering.xaml │ │ ├── Filtering.xaml.cs │ │ ├── GettingStarted.xaml │ │ ├── GettingStarted.xaml.cs │ │ ├── Grouping.xaml │ │ ├── Grouping.xaml.cs │ │ ├── Highlighting.xaml │ │ ├── Highlighting.xaml.cs │ │ ├── LeadingAndTrailingView.xaml │ │ ├── LeadingAndTrailingView.xaml.cs │ │ ├── MultiSelection.xaml │ │ ├── MultiSelection.xaml.cs │ │ └── Resources │ │ │ ├── CapitalCitySearchingBehavior.cs │ │ │ ├── CustomAsyncFilter.cs │ │ │ ├── CustomFilter.cs │ │ │ ├── CustomGroupFilter.cs │ │ │ └── CustomSearch.cs │ ├── ColorPalette │ │ ├── ColorPaletteView.xaml │ │ └── ColorPaletteView.xaml.cs │ ├── ColorPicker │ │ ├── ColorPickerView.xaml │ │ └── ColorPickerView.xaml.cs │ ├── ComboBox │ │ ├── AutoAppend.xaml │ │ ├── AutoAppend.xaml.cs │ │ ├── Editing.xaml │ │ ├── Editing.xaml.cs │ │ ├── Filtering.xaml │ │ ├── Filtering.xaml.cs │ │ ├── GettingStarted.xaml │ │ ├── GettingStarted.xaml.cs │ │ ├── Grouping.xaml │ │ ├── Grouping.xaml.cs │ │ ├── Highlighting.xaml │ │ ├── Highlighting.xaml.cs │ │ ├── LeadingAndTrailingView.xaml │ │ ├── LeadingAndTrailingView.xaml.cs │ │ ├── MultiSelection.xaml │ │ ├── MultiSelection.xaml.cs │ │ ├── Resources │ │ │ ├── CityFilteringBehavior.cs │ │ │ ├── CityFilteringBehaviour.cs │ │ │ └── CitySearchingBehavior.cs │ │ ├── Searching.xaml │ │ └── Searching.xaml.cs │ ├── DatePicker │ │ ├── Customization.xaml │ │ ├── Customization.xaml.cs │ │ ├── DatePickerView.xaml │ │ ├── DatePickerView.xaml.cs │ │ └── Resources │ │ │ └── DateItemTemplateSelector.cs │ ├── DropDownColorPalette │ │ ├── DropDownColorPaletteView.xaml │ │ └── DropDownColorPaletteView.xaml.cs │ ├── DropDownColorPicker │ │ ├── DropDownColorPickerView.xaml │ │ └── DropDownColorPickerView.xaml.cs │ ├── MaskedTextBox │ │ ├── ErrorIndicationView.xaml │ │ ├── ErrorIndicationView.xaml.cs │ │ ├── GettingStartedView.xaml │ │ ├── GettingStartedView.xaml.cs │ │ ├── InputValidationView.xaml │ │ ├── InputValidationView.xaml.cs │ │ ├── LiteralsAndPromptView.xaml │ │ └── LiteralsAndPromptView.xaml.cs │ ├── NumberBox │ │ ├── CultureView.xaml │ │ ├── CultureView.xaml.cs │ │ ├── GettingStartedView.xaml │ │ └── GettingStartedView.xaml.cs │ ├── Rating │ │ ├── CustomView.xaml │ │ ├── CustomView.xaml.cs │ │ ├── GettingStartedView.xaml │ │ ├── GettingStartedView.xaml.cs │ │ └── Resources │ │ │ ├── ImageDataTemplateSelector.cs │ │ │ └── PathDataTemplateSelector.cs │ ├── SegmentedControl │ │ ├── Customization.xaml │ │ ├── Customization.xaml.cs │ │ ├── GettingStarted.xaml │ │ └── GettingStarted.xaml.cs │ └── TimePicker │ │ ├── Customization.xaml │ │ ├── Customization.xaml.cs │ │ ├── Resources │ │ └── TimeItemTemplateSelector.cs │ │ ├── TimePickerView.xaml │ │ └── TimePickerView.xaml.cs ├── app.manifest ├── syncfusion.editor.props └── syncfusion.editordemos.winui_TemporaryKey.pfx ├── gitleaksignore.txt ├── kanban ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── Kanban │ │ ├── Bucolicpie.png │ │ ├── Bumpercrop.png │ │ ├── DoubleCheeseMargherita.png │ │ ├── Margherita.png │ │ ├── MexicanGreenWave.png │ │ ├── People_Circle1.png │ │ ├── People_Circle10.png │ │ ├── People_Circle11.png │ │ ├── People_Circle12.png │ │ ├── People_Circle13.png │ │ ├── People_Circle14.png │ │ ├── People_Circle17.png │ │ ├── People_Circle2.png │ │ ├── People_Circle23.png │ │ ├── People_Circle3.png │ │ ├── People_Circle31.png │ │ ├── People_Circle35.png │ │ ├── People_Circle4.png │ │ ├── People_Circle5.png │ │ ├── People_Circle6.png │ │ ├── People_Circle7.png │ │ ├── People_Circle8.png │ │ ├── People_Circle9.png │ │ ├── People_Circle_0.png │ │ ├── Saladdaze.png │ │ ├── Spiceoflife.png │ │ └── Verynicoise.png │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Package.appxmanifest ├── Properties │ ├── AssemblyInfo.cs │ ├── Default.rd.xml │ ├── PublishProfiles │ │ ├── win10-arm64.pubxml │ │ ├── win10-x64.pubxml │ │ └── win10-x86.pubxml │ └── launchSettings.json ├── SamplesConfiguration.cs ├── Syncfusion.KanbanDemos.WinUI.csproj ├── Syncfusion.KanbanDemos.WinUI.sln ├── Syncfusion.KanbanDemos.WinUI_Net80.csproj ├── Syncfusion.KanbanDemos.WinUI_Net80.sln ├── Syncfusion.KanbanDemos.WinUI_Net90.csproj ├── Syncfusion.KanbanDemos.WinUI_Net90.sln ├── ViewModel │ ├── CustomizationViewModel.cs │ ├── GettingStartedViewModel.cs │ └── SwimlaneViewModel.cs ├── Views │ ├── Customization.xaml │ ├── Customization.xaml.cs │ ├── DialogEditing.xaml │ ├── DialogEditing.xaml.cs │ ├── GettingStarted.xaml │ ├── GettingStarted.xaml.cs │ ├── Swimlane.xaml │ └── Swimlane.xaml.cs ├── app.manifest └── syncfuion.kanban.props ├── lineargauge ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── LinearGauge │ │ ├── AxisCornerStyle.xaml.txt │ │ ├── BarPointer.xaml.txt │ │ ├── BatteryDemo.xaml.txt │ │ ├── BulletGraphDemo.xaml.txt │ │ ├── ContentPointer.xaml.txt │ │ ├── CornerStyleBarPointer.xaml.txt │ │ ├── DefaultAxis.xaml.txt │ │ ├── GradientBarPointer.xaml.txt │ │ ├── HeightCalculatorDemo.xaml.cs.txt │ │ ├── HeightCalculatorDemo.xaml.txt │ │ ├── HeightCalculatorImage.png │ │ ├── InversedAxis.xaml.txt │ │ ├── LabelCustomization.xaml.txt │ │ ├── LinearRange.xaml.txt │ │ ├── MultiplePointers.xaml.cs.txt │ │ ├── MultiplePointers.xaml.txt │ │ ├── MultipleRanges.xaml.txt │ │ ├── ProgressBarDemo.xaml.txt │ │ ├── RangeColorAxis.xaml.txt │ │ ├── SleepWatchScore.xaml.cs.txt │ │ ├── SleepWatchScore.xaml.txt │ │ ├── StepsCounter.xaml.cs.txt │ │ ├── StepsCounter.xaml.txt │ │ ├── TextLabel.xaml.txt │ │ ├── ThermometerDemo.xaml.txt │ │ ├── TickCustomization.xaml.txt │ │ ├── VerticalAxis.xaml.txt │ │ ├── VerticalRanges.xaml.txt │ │ ├── VolumeSettingsDemo.xaml.cs.txt │ │ ├── VolumeSettingsDemo.xaml.txt │ │ └── WaterLevelIndicatorDemo.xaml.txt │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Package.appxmanifest ├── Properties │ ├── AssemblyInfo.cs │ ├── Default.rd.xml │ ├── PublishProfiles │ │ ├── win10-arm64.pubxml │ │ ├── win10-x64.pubxml │ │ └── win10-x86.pubxml │ └── launchSettings.json ├── SamplesConfiguration.cs ├── Syncfusion.LinearGaugeDemos.WinUI.csproj ├── Syncfusion.LinearGaugeDemos.WinUI.sln ├── Syncfusion.LinearGaugeDemos.WinUI_Net80.csproj ├── Syncfusion.LinearGaugeDemos.WinUI_Net80.sln ├── Syncfusion.LinearGaugeDemos.WinUI_Net90.csproj ├── Syncfusion.LinearGaugeDemos.WinUI_Net90.sln ├── Views │ ├── Axis │ │ ├── AxisCornerStyle │ │ │ ├── AxisCornerStyle.xaml │ │ │ └── AxisCornerStyle.xaml.cs │ │ ├── DefaultAxis │ │ │ ├── DefaultAxis.xaml │ │ │ └── DefaultAxis.xaml.cs │ │ ├── InversedAxis │ │ │ ├── InversedAxis.xaml │ │ │ └── InversedAxis.xaml.cs │ │ ├── LabelCustomization │ │ │ ├── LabelCustomization.xaml │ │ │ └── LabelCustomization.xaml.cs │ │ ├── TextLabel │ │ │ ├── TextLabel.xaml │ │ │ └── TextLabel.xaml.cs │ │ ├── TickCustomization │ │ │ ├── TickCustomization.xaml │ │ │ └── TickCustomization.xaml.cs │ │ └── VerticalAxis │ │ │ ├── VerticalAxis.xaml │ │ │ └── VerticalAxis.xaml.cs │ ├── GettingStarted │ │ ├── GettingStarted.xaml │ │ └── GettingStarted.xaml.cs │ ├── Pointers │ │ ├── BarPointer │ │ │ ├── BarPointer.xaml │ │ │ └── BarPointer.xaml.cs │ │ ├── ContentPointer │ │ │ ├── ContentPointer.xaml │ │ │ └── ContentPointer.xaml.cs │ │ └── MultiplePointers │ │ │ ├── MultiplePointers.xaml │ │ │ └── MultiplePointers.xaml.cs │ ├── Range │ │ ├── LinearRange │ │ │ ├── LinearRange.xaml │ │ │ └── LinearRange.xaml.cs │ │ ├── MultipleRanges │ │ │ ├── MultipleRanges.xaml │ │ │ └── MultipleRanges.xaml.cs │ │ ├── RangeColorAxis │ │ │ ├── RangeColorAxis.xaml │ │ │ └── RangeColorAxis.xaml.cs │ │ └── VerticalRanges │ │ │ ├── VerticalRanges.xaml │ │ │ └── VerticalRanges.xaml.cs │ └── ShowCase │ │ ├── BatteryDemo │ │ ├── BatteryDemo.xaml │ │ └── BatteryDemo.xaml.cs │ │ ├── BulletGraphDemo │ │ ├── BulletGraphDemo.xaml │ │ └── BulletGraphDemo.xaml.cs │ │ ├── HeightCalculator │ │ ├── HeightCalculatorDemo.xaml │ │ └── HeightCalculatorDemo.xaml.cs │ │ ├── ProgressBarDemo │ │ ├── ProgressBarDemo.xaml │ │ └── ProgressBarDemo.xaml.cs │ │ ├── SleepWatchScore │ │ ├── SleepWatchScore.xaml │ │ └── SleepWatchScore.xaml.cs │ │ ├── StepsCounter │ │ ├── StepsCounter.xaml │ │ └── StepsCounter.xaml.cs │ │ ├── Thermometer │ │ ├── ThermometerDemo.xaml │ │ └── ThermometerDemo.xaml.cs │ │ ├── VolumeSettings │ │ ├── VolumeSettingsDemo.xaml │ │ └── VolumeSettingsDemo.xaml.cs │ │ └── WaterLevelIndicator │ │ ├── WaterLevelIndicatorDemo.xaml │ │ └── WaterLevelIndicatorDemo.xaml.cs ├── app.manifest ├── syncfusion.lineargauge.props └── syncfusion.lineargaugedemos.winui_TemporaryKey.pfx ├── notification ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── Notification │ │ ├── BadgeAlignments_xaml.txt │ │ ├── BadgeContentTemplate_cs.txt │ │ ├── BadgeContentTemplate_xaml.txt │ │ ├── BadgeCustomAlignments_xaml.txt │ │ ├── BadgeShapes_xaml.txt │ │ ├── BadgeWithListView_xaml.txt │ │ ├── BusyIndicatorAnimation_xaml.txt │ │ └── avatar.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── Converters │ └── CustomNumberConverter.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Model │ └── MailInfo.cs ├── Package.appxmanifest ├── Properties │ ├── AssemblyInfo.cs │ ├── Default.rd.xml │ ├── PublishProfiles │ │ ├── win10-arm64.pubxml │ │ ├── win10-x64.pubxml │ │ └── win10-x86.pubxml │ └── launchSettings.json ├── SamplesConfiguration.cs ├── Syncfusion.NotificationDemos.WinUI.csproj ├── Syncfusion.NotificationDemos.WinUI.sln ├── Syncfusion.NotificationDemos.WinUI_Net80.csproj ├── Syncfusion.NotificationDemos.WinUI_Net80.sln ├── Syncfusion.NotificationDemos.WinUI_Net90.csproj ├── Syncfusion.NotificationDemos.WinUI_Net90.sln ├── ViewModel │ └── BadgeViewModel.cs ├── Views │ ├── Badge │ │ ├── BadgeView.xaml │ │ └── BadgeView.xaml.cs │ └── BusyIndicator │ │ ├── GettingStartedView.xaml │ │ └── GettingStartedView.xaml.cs ├── app.manifest ├── syncfusion.notification.props └── syncfusion.notificationdemos.winui_TemporaryKey.pfx ├── pdf ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── AdventureCycle.jpg │ ├── AdventureCycle.txt │ ├── AdventureWork.png │ ├── Pdf │ │ ├── Annotations_xaml_cs.txt │ │ ├── Certificate_xaml_cs.txt │ │ ├── DigitalSignature_xaml_cs.txt │ │ ├── EBook_xaml_cs.txt │ │ ├── Encryption_xaml_cs.txt │ │ ├── ExtractText_xaml_cs.txt │ │ ├── FindText_xaml_cs.txt │ │ ├── FormFilling_xaml_cs.txt │ │ ├── ImageInsertion_xaml_cs.txt │ │ ├── ImageToPdf_xaml_cs.txt │ │ ├── ImportAndExport_xaml_cs.txt │ │ ├── Invoice_xaml_cs.txt │ │ ├── MergePDF_xaml_cs.txt │ │ ├── PdfConformance_xaml_cs.txt │ │ ├── PdfWatermark_xaml_cs.txt │ │ ├── Redaction_xaml_cs.txt │ │ ├── TiffToPdf_xaml_cs.txt │ │ └── XPSToPDF_xaml_cs.txt │ ├── Pdf_Succinctly_img_1.jpg │ ├── Pdf_Succinctly_img_2.jpg │ ├── Pdf_Succinctly_img_3.jpg │ ├── Pdf_Succinctly_img_4.jpg │ ├── Pdf_Succinctly_img_5.jpg │ ├── RedactionTemplate.pdf │ ├── Sound.mp3 │ ├── Video.mp4 │ ├── XPSToPDF.xps │ ├── Xamarin_JPEG.jpg │ ├── Xamarin_PNG.png │ ├── arial.ttf │ ├── certificate.jpg │ ├── certificate.pfx │ ├── credit_card_statement.pdf │ ├── credit_card_statement.xml │ ├── digital_signature_template.pdf │ ├── export_template.pdf │ ├── form_template.pdf │ ├── image.tiff │ ├── import_data.fdf │ ├── import_data.xfdf │ ├── import_data.xml │ ├── pdf_succinctly.pdf │ ├── pdf_succinctly_page1.jpg │ ├── pdf_succinctly_page2.jpg │ ├── pdf_succinctly_page3.jpg │ ├── pdf_succinctly_page4.jpg │ ├── pdf_succinctly_page5.jpg │ ├── pdf_succinctly_page6.jpg │ ├── richmedia.jpg │ ├── richmedia_sound.jpg │ └── signature.png ├── Helper │ └── PdfUtil.cs ├── Images │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Package.appxmanifest ├── Properties │ ├── AssemblyInfo.cs │ ├── Default.rd.xml │ ├── PublishProfiles │ │ ├── win10-arm64.pubxml │ │ ├── win10-x64.pubxml │ │ └── win10-x86.pubxml │ └── launchSettings.json ├── SamplesConfiguration.cs ├── Syncfusion.PdfDemos.WinUI.csproj ├── Syncfusion.PdfDemos.WinUI.sln ├── Syncfusion.PdfDemos.WinUI_Net80.csproj ├── Syncfusion.PdfDemos.WinUI_Net80.sln ├── Syncfusion.PdfDemos.WinUI_Net90.csproj ├── Syncfusion.PdfDemos.WinUI_Net90.sln ├── Views │ ├── Annotations.xaml │ ├── Annotations.xaml.cs │ ├── Certificate.xaml │ ├── Certificate.xaml.cs │ ├── DigitalSignature.xaml │ ├── DigitalSignature.xaml.cs │ ├── EBook.xaml │ ├── EBook.xaml.cs │ ├── Encryption.xaml │ ├── Encryption.xaml.cs │ ├── ExtractText.xaml │ ├── ExtractText.xaml.cs │ ├── FindText.xaml │ ├── FindText.xaml.cs │ ├── FormFilling.xaml │ ├── FormFilling.xaml.cs │ ├── ImageInsertion.xaml │ ├── ImageInsertion.xaml.cs │ ├── ImageToPdf.xaml │ ├── ImageToPdf.xaml.cs │ ├── ImportAndExport.xaml │ ├── ImportAndExport.xaml.cs │ ├── Invoice.xaml │ ├── Invoice.xaml.cs │ ├── MergePDF.xaml │ ├── MergePDF.xaml.cs │ ├── PdfConformance.xaml │ ├── PdfConformance.xaml.cs │ ├── PdfWatermark.xaml │ ├── PdfWatermark.xaml.cs │ ├── Redaction.xaml │ ├── Redaction.xaml.cs │ ├── TiffToPdf.xaml │ ├── TiffToPdf.xaml.cs │ ├── XpsToPdf.xaml │ └── XpsToPdf.xaml.cs ├── app.manifest └── syncfusion.pdf.props ├── presentation ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── Presentation │ │ ├── About.png │ │ ├── About.svg │ │ ├── Chart_xaml_cs.txt │ │ ├── CycleLogo.jpg │ │ ├── EmbeddedOleObject.pptx │ │ ├── EncryptAndDecrypt_xaml_cs.txt │ │ ├── FindAndHighlightInput.pptx │ │ ├── FindAndHighlight_xaml_cs.txt │ │ ├── FindAndReplace_xaml_cs.txt │ │ ├── HeaderAndFooter_xaml_cs.txt │ │ ├── HeaderFooter.pptx │ │ ├── HelloWorld.pptx │ │ ├── HelloWorld_xaml_cs.txt │ │ ├── Image_xaml_cs.txt │ │ ├── Images.pptx │ │ ├── Input Template.pptx │ │ ├── OlePicture.png │ │ ├── OleTemplate.docx │ │ ├── PPTXToImage_xaml_cs.txt │ │ ├── PPTXToPDF_xaml_cs.txt │ │ ├── Products.xml │ │ ├── Slide_xaml_cs.txt │ │ ├── Slides.pptx │ │ ├── SyncfusionPresentation.pptx │ │ ├── TableData.xml │ │ ├── Table_xaml_cs.txt │ │ ├── Template.pptx │ │ └── tablet.jpg │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── Helpers │ └── SaveAndLaunch.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Package.appxmanifest ├── Properties │ ├── AssemblyInfo.cs │ ├── Default.rd.xml │ ├── PublishProfiles │ │ ├── win10-arm64.pubxml │ │ ├── win10-x64.pubxml │ │ └── win10-x86.pubxml │ └── launchSettings.json ├── SamplesConfiguration.cs ├── Syncfusion.PresentationDemos.WinUI.csproj ├── Syncfusion.PresentationDemos.WinUI.sln ├── Syncfusion.PresentationDemos.WinUI_Net80.csproj ├── Syncfusion.PresentationDemos.WinUI_Net80.sln ├── Syncfusion.PresentationDemos.WinUI_Net90.csproj ├── Syncfusion.PresentationDemos.WinUI_Net90.sln ├── Views │ ├── Chart.xaml │ ├── Chart.xaml.cs │ ├── EncryptAndDecrypt.xaml │ ├── EncryptAndDecrypt.xaml.cs │ ├── FindAndHighlight.xaml │ ├── FindAndHighlight.xaml.cs │ ├── FindAndReplace.xaml │ ├── FindAndReplace.xaml.cs │ ├── HeaderAndFooter.xaml │ ├── HeaderAndFooter.xaml.cs │ ├── HelloWorld.xaml │ ├── HelloWorld.xaml.cs │ ├── Image.xaml │ ├── Image.xaml.cs │ ├── PPTXToImage.xaml │ ├── PPTXToImage.xaml.cs │ ├── PPTXToPDF.xaml │ ├── PPTXToPDF.xaml.cs │ ├── Slide.xaml │ ├── Slide.xaml.cs │ ├── Table.xaml │ └── Table.xaml.cs ├── app.manifest ├── syncfusion.presentation.props └── syncfusion.presentationdemos.winui_TemporaryKey.pfx ├── radialgauge ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── RadialGauge │ │ ├── AnimationCustomization.xaml.cs.txt │ │ ├── AxisBackground.png │ │ ├── BackgroundContent.cs.txt │ │ ├── BackgroundContent.xaml.cs.txt │ │ ├── Clock.xaml.cs.txt │ │ ├── CustomLabels.cs.txt │ │ ├── CustomLabels.xaml.cs.txt │ │ ├── CustomScale.cs.txt │ │ ├── CustomScale.xaml.cs.txt │ │ ├── DefaultView.xaml.cs.txt │ │ ├── DirectionCompass.xaml.cs.txt │ │ ├── DistanceTracker.xaml.cs.txt │ │ ├── LabelCustomization.xaml.cs.txt │ │ ├── MarkerPointer.xaml.cs.txt │ │ ├── MultipleAxis.xaml.cs.txt │ │ ├── MultipleNeedle.xaml.cs.txt │ │ ├── MultipleRanges.xaml.cs.txt │ │ ├── RadialRangeSlider.xaml.cs.txt │ │ ├── RangeColorForAxis.xaml.cs.txt │ │ ├── RangeLabel.xaml.cs.txt │ │ ├── RangePointer.xaml.cs.txt │ │ ├── RangeSlider.xaml.cs.txt │ │ ├── RangeThickness.xaml.cs.txt │ │ ├── SleepTracker.xaml.cs.txt │ │ ├── TempMonitor.xaml.cs.txt │ │ ├── TempTracker.xaml.cs.txt │ │ ├── TextAnnotation.xaml.cs.txt │ │ ├── TextPointer.xaml.cs.txt │ │ ├── TickCustomization.xaml.cs.txt │ │ ├── ball.png │ │ ├── shotput.png │ │ └── sun.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Package.appxmanifest ├── Properties │ ├── AssemblyInfo.cs │ ├── Default.rd.xml │ ├── PublishProfiles │ │ ├── win10-arm64.pubxml │ │ ├── win10-x64.pubxml │ │ └── win10-x86.pubxml │ └── launchSettings.json ├── SamplesConfiguration.cs ├── Syncfusion.RadialGaugeDemos.WinUI.csproj ├── Syncfusion.RadialGaugeDemos.WinUI.sln ├── Syncfusion.RadialGaugeDemos.WinUI_Net80.csproj ├── Syncfusion.RadialGaugeDemos.WinUI_Net80.sln ├── Syncfusion.RadialGaugeDemos.WinUI_Net90.csproj ├── Syncfusion.RadialGaugeDemos.WinUI_Net90.sln ├── ViewModel │ └── RadialRangeSliderViewModel.cs ├── Views │ ├── Animation │ │ ├── Animation.xaml │ │ └── Animation.xaml.cs │ ├── Annotations │ │ ├── DirectionCompass.xaml │ │ ├── DirectionCompass.xaml.cs │ │ ├── TempTracker.xaml │ │ ├── TempTracker.xaml.cs │ │ ├── TextAnnotation.xaml │ │ └── TextAnnotation.xaml.cs │ ├── Axis │ │ ├── BackgroundContent.xaml │ │ ├── BackgroundContent.xaml.cs │ │ ├── CustomLabels.xaml │ │ ├── CustomLabels.xaml.cs │ │ ├── CustomScale.xaml │ │ ├── CustomScale.xaml.cs │ │ ├── DefaultView.xaml │ │ ├── DefaultView.xaml.cs │ │ ├── LabelCustomization.xaml │ │ ├── LabelCustomization.xaml.cs │ │ ├── MultipleAxis.xaml │ │ ├── MultipleAxis.xaml.cs │ │ ├── RangeColorForAxis.xaml │ │ ├── RangeColorForAxis.xaml.cs │ │ ├── TickCustomization.xaml │ │ └── TickCustomization.xaml.cs │ ├── GettingStarted │ │ ├── GettingStarted.xaml │ │ └── GettingStarted.xaml.cs │ ├── Interactions │ │ ├── RadialRangeSlider.xaml │ │ ├── RadialRangeSlider.xaml.cs │ │ ├── RangeSlider.xaml │ │ └── RangeSlider.xaml.cs │ ├── Pointers │ │ ├── MarkerPointer.xaml │ │ ├── MarkerPointer.xaml.cs │ │ ├── MultipleNeedle.xaml │ │ ├── MultipleNeedle.xaml.cs │ │ ├── RangePointer.xaml │ │ ├── RangePointer.xaml.cs │ │ ├── TextPointer.xaml │ │ └── TextPointer.xaml.cs │ ├── Range │ │ ├── MultipleRanges.xaml │ │ ├── MultipleRanges.xaml.cs │ │ ├── RangeLabel.xaml │ │ ├── RangeLabel.xaml.cs │ │ ├── RangeThickness.xaml │ │ └── RangeThickness.xaml.cs │ └── ShowCase │ │ ├── CarDashboard.xaml │ │ ├── CarDashboard.xaml.cs │ │ ├── Clock.xaml │ │ ├── Clock.xaml.cs │ │ ├── DistanceTracker.xaml │ │ ├── DistanceTracker.xaml.cs │ │ ├── SleepTracker.xaml │ │ ├── SleepTracker.xaml.cs │ │ ├── TempMonitor.xaml │ │ └── TempMonitor.xaml.cs ├── app.manifest ├── syncfusion.radialgauge.props └── syncfusion.radialgaugedemos.winui_TemporaryKey.pfx ├── ribbon ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── Ribbon │ │ ├── ContextualTab_xaml.txt │ │ ├── Employees │ │ │ ├── Employee1.png │ │ │ ├── Employee10.png │ │ │ ├── Employee2.png │ │ │ ├── Employee3.png │ │ │ ├── Employee4.png │ │ │ ├── Employee5.png │ │ │ ├── Employee6.png │ │ │ ├── Employee7.png │ │ │ ├── Employee8.png │ │ │ └── Employee9.png │ │ ├── GettingStartedCode.txt │ │ ├── ResizePriority_xaml.txt │ │ ├── Resize_xaml.txt │ │ ├── RibbonCompactCode.txt │ │ ├── RibbonGalleryCode.txt │ │ ├── RibbonKeyTipCode.txt │ │ ├── RibbonQAT.txt │ │ ├── RibbonScreenTip.txt │ │ ├── Ribbongallerypreview_cs.txt │ │ ├── Ribbongallerypreview_xaml.txt │ │ └── SimplifiedLayoutCode.txt │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Model │ ├── Employee.cs │ └── FontStyleInfo.cs ├── Package.appxmanifest ├── Properties │ ├── AssemblyInfo.cs │ ├── Default.rd.xml │ ├── PublishProfiles │ │ ├── win10-arm64.pubxml │ │ ├── win10-x64.pubxml │ │ └── win10-x86.pubxml │ └── launchSettings.json ├── SampleConfiguration.cs ├── Syncfusion.RibbonDemos.WinUI.csproj ├── Syncfusion.RibbonDemos.WinUI.sln ├── Syncfusion.RibbonDemos.WinUI_Net80.csproj ├── Syncfusion.RibbonDemos.WinUI_Net80.sln ├── Syncfusion.RibbonDemos.WinUI_Net90.csproj ├── Syncfusion.RibbonDemos.WinUI_Net90.sln ├── ViewModel │ ├── ContextTabGroupViewModel.cs │ └── ViewModel.cs ├── Views │ ├── ContextualTabGroupView.xaml │ ├── ContextualTabGroupView.xaml.cs │ ├── RibbonCompactSize.xaml │ ├── RibbonCompactSize.xaml.cs │ ├── RibbonGalleryView.xaml │ ├── RibbonGalleryView.xaml.cs │ ├── RibbonKeyTip.xaml │ ├── RibbonKeyTip.xaml.cs │ ├── RibbonQAT.xaml │ ├── RibbonQAT.xaml.cs │ ├── RibbonResizeView.xaml │ ├── RibbonResizeView.xaml.cs │ ├── RibbonView.xaml │ ├── RibbonView.xaml.cs │ ├── Sample1.xaml │ ├── Sample1.xaml.cs │ ├── Sample2.xaml │ ├── Sample2.xaml.cs │ ├── Sample3.xaml │ ├── Sample3.xaml.cs │ ├── Sample4.xaml │ ├── Sample4.xaml.cs │ ├── ScreenTip.xaml │ ├── ScreenTip.xaml.cs │ ├── SimplifiedRibbonView.xaml │ └── SimplifiedRibbonView.xaml.cs ├── app.manifest ├── syncfusion.ribbon.props └── syncfusion.samplebrowser.winui_TemporaryKey.pfx ├── scheduler ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── Scheduler │ │ ├── People_Circle0.png │ │ ├── People_Circle1.png │ │ ├── People_Circle10.png │ │ ├── People_Circle11.png │ │ ├── People_Circle12.png │ │ ├── People_Circle2.png │ │ ├── People_Circle3.png │ │ ├── People_Circle4.png │ │ ├── People_Circle5.png │ │ ├── People_Circle6.png │ │ ├── People_Circle7.png │ │ ├── People_Circle8.png │ │ └── People_Circle9.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── Helper │ ├── AppointmentTemplateSelector.cs │ ├── MonthCellTemplateSelector.cs │ ├── SchedulerConverter.cs │ └── SchedulerViewTypeHelper.cs ├── Images │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Model │ ├── Event.cs │ └── SmartSchedulerResourceViewModel.cs ├── Package.appxmanifest ├── Properties │ ├── AssemblyInfo.cs │ ├── Default.rd.xml │ ├── PublishProfiles │ │ ├── win10-arm64.pubxml │ │ ├── win10-x64.pubxml │ │ └── win10-x86.pubxml │ └── launchSettings.json ├── SamplesConfiguration.cs ├── Syncfusion.SchedulerDemos.WinUI.csproj ├── Syncfusion.SchedulerDemos.WinUI.sln ├── Syncfusion.SchedulerDemos.WinUI_Net80.csproj ├── Syncfusion.SchedulerDemos.WinUI_Net80.sln ├── Syncfusion.SchedulerDemos.WinUI_Net90.csproj ├── Syncfusion.SchedulerDemos.WinUI_Net90.sln ├── ViewModel │ ├── GettingStartedViewModel.cs │ ├── LoadOnDemandViewModel.cs │ ├── SchedulerBindingViewModel.cs │ └── SmartSchedulerViewModel.cs ├── Views │ ├── AppointmentCustomaization.xaml │ ├── AppointmentCustomaization.xaml.cs │ ├── CalendarIdentifier.xaml │ ├── CalendarIdentifier.xaml.cs │ ├── DataBinding.xaml │ ├── DataBinding.xaml.cs │ ├── DateWiseResourceGrouping.xaml │ ├── DateWiseResourceGrouping.xaml.cs │ ├── DragAndDrop.xaml │ ├── DragAndDrop.xaml.cs │ ├── GettingStarted.xaml │ ├── GettingStarted.xaml.cs │ ├── HorizontalResourceGrouping.xaml │ ├── HorizontalResourceGrouping.xaml.cs │ ├── LoadOnDemand.xaml │ ├── LoadOnDemand.xaml.cs │ ├── MonthCellCustomization.xaml │ ├── MonthCellCustomization.xaml.cs │ ├── RecurringAppointment.xaml │ ├── RecurringAppointment.xaml.cs │ ├── RecursiveExceptionAppointment.xaml │ ├── RecursiveExceptionAppointment.xaml.cs │ ├── SmartScheduler.xaml │ ├── SmartScheduler.xaml.cs │ ├── SpecialTimeRegionCustomization.xaml │ ├── SpecialTimeRegionCustomization.xaml.cs │ ├── TimelineResourceGrouping.xaml │ ├── TimelineResourceGrouping.xaml.cs │ ├── TimelineViews.xaml │ ├── TimelineViews.xaml.cs │ ├── TimeslotCustomization.xaml │ └── TimeslotCustomization.xaml.cs ├── app.manifest ├── syncfusion.scheduler.props └── syncfusion.schedulerdemos.winui_TemporaryKey.pfx ├── shadow ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── Shadow │ │ ├── Ellipse_Shadow.png │ │ ├── ShadowButton_xaml.txt │ │ ├── ShadowImage_xaml.txt │ │ └── ShadowShape_xaml.txt │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Package.appxmanifest ├── Properties │ ├── AssemblyInfo.cs │ ├── Default.rd.xml │ ├── PublishProfiles │ │ ├── win10-arm64.pubxml │ │ ├── win10-x64.pubxml │ │ └── win10-x86.pubxml │ └── launchSettings.json ├── SamplesConfiguration.cs ├── Syncfusion.ShadowDemos.WinUI.csproj ├── Syncfusion.ShadowDemos.WinUI.sln ├── Syncfusion.ShadowDemos.WinUI_Net80.csproj ├── Syncfusion.ShadowDemos.WinUI_Net80.sln ├── Syncfusion.ShadowDemos.WinUI_Net90.csproj ├── Syncfusion.ShadowDemos.WinUI_Net90.sln ├── Views │ └── Shadow │ │ ├── ShadowView.xaml │ │ └── ShadowView.xaml.cs ├── app.manifest └── syncfusion.shadow.props ├── shimmer ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── Shimmer │ │ ├── Feed_Image.png │ │ ├── customview_xaml.txt │ │ └── gettingstarted_xaml.txt │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Package.appxmanifest ├── Properties │ ├── AssemblyInfo.cs │ ├── Default.rd.xml │ ├── PublishProfiles │ │ ├── win10-arm64.pubxml │ │ ├── win10-x64.pubxml │ │ └── win10-x86.pubxml │ └── launchSettings.json ├── SamplesConfiguration.cs ├── Syncfusion.ShimmerDemos.WinUI.csproj ├── Syncfusion.ShimmerDemos.WinUI.sln ├── Syncfusion.ShimmerDemos.WinUI_Net80.csproj ├── Syncfusion.ShimmerDemos.WinUI_Net80.sln ├── Syncfusion.ShimmerDemos.WinUI_Net90.csproj ├── Syncfusion.ShimmerDemos.WinUI_Net90.sln ├── Views │ ├── CustomView.xaml │ ├── CustomView.xaml.cs │ ├── GettingStartedView.xaml │ └── GettingStartedView.xaml.cs ├── app.manifest └── syncfusion.shimmer.props ├── sliders ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── RangeSlider │ │ ├── DivActiveTemplateCustomization.xaml.txt │ │ ├── DivColorCustomization.xaml.txt │ │ ├── DivTemplateCustomization.xaml.txt │ │ ├── DividerVertical.xaml.txt │ │ ├── LabActiveTemplateCustomization.xaml.txt │ │ ├── LabTemplateCustomization.xaml.txt │ │ ├── RSLogarithmicRange.xaml.cs.txt │ │ ├── RSLogarithmicRange.xaml.txt │ │ ├── SimpleVertical.xaml.txt │ │ ├── TTStyleCustomization.xaml.txt │ │ ├── TTTemplateCustomization.xaml.txt │ │ ├── ThumbColorCustomization.xaml.txt │ │ ├── ThumbTextView.xaml.txt │ │ ├── TickActiveStyleCustomization.xaml.txt │ │ ├── TickStyleCustomization.xaml.txt │ │ ├── TicksAndLabelsVertical.xaml.txt │ │ └── TrackStyleCustomization.xaml.txt │ ├── Slider │ │ ├── DivActiveTemplateCustomization.xaml.txt │ │ ├── DivColorCustomization.xaml.txt │ │ ├── DivTemplateCustomization.xaml.txt │ │ ├── DividerVertical.xaml.txt │ │ ├── Equalizer.xaml.txt │ │ ├── LabActiveTemplateCustomization.xaml.txt │ │ ├── LabTemplateCustomization.xaml.txt │ │ ├── SLogarithmicRange.xaml.cs.txt │ │ ├── SLogarithmicRange.xaml.txt │ │ ├── TTStyleCustomization.xaml.txt │ │ ├── TTTemplateCustomization.xaml.txt │ │ ├── ThumbColorCustomization.xaml.txt │ │ ├── ThumbTextView.xaml.txt │ │ ├── TickActiveStyleCustomization.xaml.txt │ │ ├── TickStyleCustomization.xaml.txt │ │ ├── TicksAndLabelsVertical.xaml.txt │ │ ├── TrackStyleCustomization.xaml.txt │ │ ├── VolumeSettings.xaml.cs.txt │ │ └── VolumeSettings.xaml.txt │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Package.appxmanifest ├── Properties │ ├── AssemblyInfo.cs │ ├── Default.rd.xml │ ├── PublishProfiles │ │ ├── win10-arm64.pubxml │ │ ├── win10-x64.pubxml │ │ └── win10-x86.pubxml │ └── launchSettings.json ├── SamplesConfiguration.cs ├── Syncfusion.SliderDemos.WinUI.csproj ├── Syncfusion.SliderDemos.WinUI.sln ├── Syncfusion.SliderDemos.WinUI_Net80.csproj ├── Syncfusion.SliderDemos.WinUI_Net80.sln ├── Syncfusion.SliderDemos.WinUI_Net90.csproj ├── Syncfusion.SliderDemos.WinUI_Net90.sln ├── Views │ ├── RangeSlider │ │ ├── CustomRange │ │ │ ├── CustomRange.xaml │ │ │ └── CustomRange.xaml.cs │ │ ├── Customization │ │ │ ├── DividerCustomization.xaml │ │ │ ├── DividerCustomization.xaml.cs │ │ │ ├── LabelCustomization.xaml │ │ │ ├── LabelCustomization.xaml.cs │ │ │ ├── ThumbCustomization.xaml │ │ │ ├── ThumbCustomization.xaml.cs │ │ │ ├── TickCustomization.xaml │ │ │ ├── TickCustomization.xaml.cs │ │ │ ├── ToolTipCustomization.xaml │ │ │ ├── ToolTipCustomization.xaml.cs │ │ │ ├── TrackCustomization.xaml │ │ │ └── TrackCustomization.xaml.cs │ │ ├── GettingStarted │ │ │ ├── GettingStarted.xaml │ │ │ └── GettingStarted.xaml.cs │ │ └── VerticalSupport │ │ │ ├── DividersVertical.xaml │ │ │ ├── DividersVertical.xaml.cs │ │ │ ├── SimpleVertical.xaml │ │ │ ├── SimpleVertical.xaml.cs │ │ │ ├── TicksAndLabelsVertical.xaml │ │ │ └── TicksAndLabelsVertical.xaml.cs │ └── Slider │ │ ├── CustomRange │ │ ├── CustomRange.xaml │ │ └── CustomRange.xaml.cs │ │ ├── Customization │ │ ├── DividerCustomization.xaml │ │ ├── DividerCustomization.xaml.cs │ │ ├── LabelCustomization.xaml │ │ ├── LabelCustomization.xaml.cs │ │ ├── ThumbCustomization.xaml │ │ ├── ThumbCustomization.xaml.cs │ │ ├── TickCustomization.xaml │ │ ├── TickCustomization.xaml.cs │ │ ├── ToolTipCustomization.xaml │ │ ├── ToolTipCustomization.xaml.cs │ │ ├── TrackCustomization.xaml │ │ └── TrackCustomization.xaml.cs │ │ ├── GettingStarted │ │ ├── GettingStarted.xaml │ │ └── GettingStarted.xaml.cs │ │ ├── VerticalSupport │ │ ├── DividersVertical.xaml │ │ ├── DividersVertical.xaml.cs │ │ ├── Equalizer.xaml │ │ ├── Equalizer.xaml.cs │ │ ├── TicksAndLabelsVertical.xaml │ │ └── TicksAndLabelsVertical.xaml.cs │ │ └── VolumeSettings │ │ ├── VolumeSettingsDemo.xaml │ │ └── VolumeSettingsDemo.xaml.cs ├── app.manifest ├── syncfusion.sliderdemos.winui_TemporaryKey.pfx └── syncfusion.sliders.props ├── syncfusion.common.desktop.props ├── syncfusion.common.uwp.props ├── targets └── MultiTargeting.targets ├── treegrid ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── Helpers │ ├── Commands.cs │ ├── SearchConditionVisibilityConverter.cs │ └── Selector.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Model │ ├── Employee.cs │ └── Person.cs ├── Package.appxmanifest ├── Properties │ ├── AssemblyInfo.cs │ ├── Default.rd.xml │ ├── PublishProfiles │ │ ├── win10-arm64.pubxml │ │ ├── win10-x64.pubxml │ │ └── win10-x86.pubxml │ └── launchSettings.json ├── SamplesConfiguration.cs ├── Syncfusion.TreeGridDemos.WinUI.csproj ├── Syncfusion.TreeGridDemos.WinUI.sln ├── Syncfusion.TreeGridDemos.WinUI_Net80.csproj ├── Syncfusion.TreeGridDemos.WinUI_Net80.sln ├── Syncfusion.TreeGridDemos.WinUI_Net90.csproj ├── Syncfusion.TreeGridDemos.WinUI_Net90.sln ├── ViewModel │ ├── EmployeeViewModel.cs │ └── PersonViewModel.cs ├── Views │ ├── AdvancedFiltering.xaml │ ├── AdvancedFiltering.xaml.cs │ ├── CheckBoxSelection.xaml │ ├── CheckBoxSelection.xaml.cs │ ├── ClipboardOperation.xaml │ ├── ClipboardOperation.xaml.cs │ ├── ColumnSizer.xaml │ ├── ColumnSizer.xaml.cs │ ├── ConditionalStyling.xaml │ ├── ConditionalStyling.xaml.cs │ ├── ContextFlyout.xaml │ ├── ContextFlyout.xaml.cs │ ├── DataValidation.xaml │ ├── DataValidation.xaml.cs │ ├── Editing.xaml │ ├── Editing.xaml.cs │ ├── ExcelExporting.xaml │ ├── ExcelExporting.xaml.cs │ ├── Filtering.xaml │ ├── Filtering.xaml.cs │ ├── FreezeColumns.xaml │ ├── FreezeColumns.xaml.cs │ ├── NestedCollection.xaml │ ├── NestedCollection.xaml.cs │ ├── OnDemandLoading.xaml │ ├── OnDemandLoading.xaml.cs │ ├── RowDragDrop.xaml │ ├── RowDragDrop.xaml.cs │ ├── Selection.xaml │ ├── Selection.xaml.cs │ ├── SelfRelational.xaml │ ├── SelfRelational.xaml.cs │ ├── Sorting.xaml │ ├── Sorting.xaml.cs │ ├── StackedHeaders.xaml │ ├── StackedHeaders.xaml.cs │ ├── Styling.xaml │ └── Styling.xaml.cs ├── app.manifest ├── syncfusion.treegrid.props └── syncfusion.treegriddemos.winui_TemporaryKey.pfx ├── treeview ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── IconResource.cs │ ├── PathIcon.xaml │ └── Tiles │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ └── Wide310x150Logo.scale-200.png ├── Converters │ └── EnumToItemsSourceConverter.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Model │ ├── CheckBoxModel.cs │ ├── DragAndDropModel.cs │ ├── EditingModel.cs │ ├── GettingStartedModel.cs │ ├── LoadOnDemandModel.cs │ ├── NodeWithImageModel.cs │ └── PerformanceModel.cs ├── Package.appxmanifest ├── Properties │ ├── AssemblyInfo.cs │ ├── Default.rd.xml │ ├── PublishProfiles │ │ ├── win10-arm64.pubxml │ │ ├── win10-x64.pubxml │ │ └── win10-x86.pubxml │ └── launchSettings.json ├── SamplesConfiguration.cs ├── Syncfusion.TreeViewDemos.WinUI.csproj ├── Syncfusion.TreeViewDemos.WinUI.sln ├── Syncfusion.TreeViewDemos.WinUI_Net80.csproj ├── Syncfusion.TreeViewDemos.WinUI_Net80.sln ├── Syncfusion.TreeViewDemos.WinUI_Net90.csproj ├── Syncfusion.TreeViewDemos.WinUI_Net90.sln ├── ViewModel │ ├── CheckBoxViewModel.cs │ ├── DragAndDropViewModel.cs │ ├── EditingViewModel.cs │ ├── GettingStartedViewModel.cs │ ├── LoadOnDemandViewModel.cs │ ├── NodeWithImageViewModel.cs │ └── PerformanceViewModel.cs ├── Views │ ├── CheckBox.xaml │ ├── CheckBox.xaml.cs │ ├── DragAndDrop.xaml │ ├── DragAndDrop.xaml.cs │ ├── Editing.xaml │ ├── Editing.xaml.cs │ ├── GettingStarted.xaml │ ├── GettingStarted.xaml.cs │ ├── LoadOnDemand.xaml │ ├── LoadOnDemand.xaml.cs │ ├── NodeWithImage.xaml │ ├── NodeWithImage.xaml.cs │ ├── Performance.xaml │ └── Performance.xaml.cs ├── app.manifest ├── syncfusion.treeview.props └── syncfusion.treeviewdemos.winui_TemporaryKey.pfx └── xlsio ├── App.xaml ├── App.xaml.cs ├── Assets ├── Tiles │ ├── LargeTile.scale-100.png │ ├── LargeTile.scale-200.png │ ├── LargeTile.scale-400.png │ ├── LockScreenLogo.scale-200.png │ ├── SmallTile.scale-100.png │ ├── SmallTile.scale-200.png │ ├── SmallTile.scale-400.png │ ├── SplashScreen.scale-100.png │ ├── SplashScreen.scale-125.png │ ├── SplashScreen.scale-150.png │ ├── SplashScreen.scale-200.png │ ├── SplashScreen.scale-400.png │ ├── Square150x150Logo.scale-100.png │ ├── Square150x150Logo.scale-200.png │ ├── Square150x150Logo.scale-400.png │ ├── Square44x44Logo.scale-100.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.scale-400.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ ├── StoreLogo.scale-100.png │ ├── StoreLogo.scale-125.png │ ├── StoreLogo.scale-150.png │ ├── StoreLogo.scale-200.png │ ├── StoreLogo.scale-400.png │ ├── Wide310x150Logo.scale-100.png │ ├── Wide310x150Logo.scale-200.png │ └── Wide310x150Logo.scale-400.png └── XlsIO │ ├── AdvancedFilterData.xlsx │ ├── AttendanceTracker_cs.txt │ ├── AutoFill_cs.txt │ ├── AutoShape_cs.txt │ ├── BoxAndWhiskerTemplate.xlsx │ ├── BoxAndWhisker_cs.txt │ ├── BudgetPlanner.xls │ ├── CFTemplate.xlsx │ ├── CLRObjects.xml │ ├── CalendarTemplate.xlsx │ ├── CallCenterTemplate.xlsx │ ├── ColumnChart_cs.txt │ ├── CommentsTemplate.xlsx │ ├── Comments_cs.txt │ ├── ConditionalFormatting_cs.txt │ ├── CreateMacroTemplate.xlsx │ ├── CreateMacro_cs.txt │ ├── CreateSpreadsheet_cs.txt │ ├── DataValidation_cs.txt │ ├── EMPID1.png │ ├── EditMacroTemplate.xltm │ ├── EditMacro_cs.txt │ ├── EmbeddedChart.xls │ ├── EmbeddedChart.xlsx │ ├── Encrypt.xlsx │ ├── EncryptAndDecrypt_cs.txt │ ├── EncryptedSpreadsheet.xlsx │ ├── ExcelToJSON.xlsx │ ├── ExcelToJSON_cs.txt │ ├── ExcelToODS.xlsx │ ├── ExcelToPDFUA.xlsx │ ├── ExcelToPDFUA_cs.txt │ ├── ExcelToPDF_cs.txt │ ├── ExcelTopdfwithChart.xlsx │ ├── ExpenseReport.xlsx │ ├── ExpensesReport_cs.txt │ ├── ExportData.xlsx │ ├── ExportData.xml │ ├── External_Input.xlsx │ ├── FaxOrderForm.doc │ ├── FaxOrderForm.pdf │ ├── FilterData.xlsx │ ├── FilterData_Color.xlsx │ ├── FindAndExtract.xls │ ├── Fonts │ ├── bahnschrift.ttf │ └── georgiab.ttf │ ├── FormatCells_cs.txt │ ├── FormulaTemplate.xls │ ├── Formula_cs.txt │ ├── FunnelChartTemplate.xlsx │ ├── GroupShape_cs.txt │ ├── GroupShapes.xlsx │ ├── HTMLToExcel.html │ ├── HTMLwithFormulaToExcel.html │ ├── IconFilterData.xlsx │ ├── ImportHTMLTable_cs.txt │ ├── Input.xls │ ├── InvoiceTemplate.xlsx │ ├── Invoice_cs.txt │ ├── LockedWorksheet.xls │ ├── MacroTemplate.xltm │ ├── NorthwindDataTemplate.xls │ ├── NorthwindTemplate.xls │ ├── Orders.xml │ ├── PivotTable.xlsx │ ├── PivotTableLayout.xlsx │ ├── PivotTableLayout_cs.txt │ ├── PivotTable_cs.txt │ ├── ProtectedWorkbook.xls │ ├── RangeManipulation.xls │ ├── ReplaceOptions.xlsx │ ├── Slicer_cs.txt │ ├── SortingData.xlsx │ ├── Sorting_cs.txt │ ├── SourceWorkbookTemplate.xls │ ├── SourceWorkbookTemplate.xlsx │ ├── Sparkline.xlsx │ ├── Sparklines_cs.txt │ ├── SunburstTemplate.xlsx │ ├── Sunburst_cs.txt │ ├── TableSlicer.xlsx │ ├── Tables_cs.txt │ ├── TemplateMarker.xlsx │ ├── TemplateMarker_cs.txt │ ├── Template_Marker_Images │ ├── Man1.jpg │ ├── Man10.png │ ├── Man11.jpg │ ├── Man12.jpg │ ├── Man13.jpg │ ├── Man14.jpg │ ├── Man15.jpg │ ├── Man16.jpg │ ├── Man17.jpg │ ├── Man18.jpg │ ├── Man2.png │ ├── Man3.jpg │ ├── Man4.png │ ├── Man5.jpg │ ├── Man6.png │ ├── Man7.jpg │ ├── Man8.png │ ├── Man9.jpg │ ├── Woman1.jpg │ ├── Woman10.jpg │ ├── Woman11.jpg │ ├── Woman12.jpg │ ├── Woman13.jpg │ ├── Woman14.jpg │ ├── Woman2.png │ ├── Woman3.jpg │ ├── Woman4.png │ ├── Woman5.jpg │ ├── Woman6.png │ ├── Woman7.jpg │ ├── Woman8.jpg │ └── Woman9.jpg │ ├── TimelogTemplate.xls │ ├── TreemapTemplate.xlsx │ ├── Treemap_cs.txt │ ├── WhatIfAnalysisTemplate.xlsx │ ├── WhatIfAnalysis_cs.txt │ ├── WorkSheetToImage.xlsx │ ├── WorksheetToImage_cs.txt │ ├── YearlySales_cs.txt │ ├── contact_sales.gif │ ├── customers.xml │ ├── header.gif │ ├── image │ ├── CF_IS_GreenCheckSymbol.png │ ├── CF_IS_GreenUpArrow.png │ ├── CF_IS_RedCrossSymbol.png │ ├── CF_IS_RedDownArrow.png │ ├── CF_IS_SignalWithFourFillBars.png │ ├── CF_IS_SignalWithOneFillBar.png │ ├── CF_IS_SignalWithThreeFillBars.png │ ├── CF_IS_SignalWithTwoFillBars.png │ ├── CF_IS_YellowDownInclineArrow.png │ ├── CF_IS_YellowExclamationSymbol.png │ ├── CF_IS_YellowSideArrow.png │ ├── CF_IS_YellowUpInclineArrow.png │ └── NoIcon.png │ ├── invoice.jpeg │ ├── logo.jpg │ ├── monthly_sales.xls │ ├── pdfIcon.jpg │ └── wordIcon.jpg ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Package.appxmanifest ├── Properties ├── AssemblyInfo.cs ├── Default.rd.xml ├── PublishProfiles │ ├── win10-arm64.pubxml │ ├── win10-x64.pubxml │ └── win10-x86.pubxml └── launchSettings.json ├── SamplesConfiguration.cs ├── Syncfusion.XlsIODemos.WinUI.csproj ├── Syncfusion.XlsIODemos.WinUI.sln ├── Syncfusion.XlsIODemos.WinUI_Net80.csproj ├── Syncfusion.XlsIODemos.WinUI_Net80.sln ├── Syncfusion.XlsIODemos.WinUI_Net90.csproj ├── Syncfusion.XlsIODemos.WinUI_Net90.sln ├── Views ├── AttendanceTracker.xaml ├── AttendanceTracker.xaml.cs ├── AutoFill.xaml ├── AutoFill.xaml.cs ├── AutoFillOptionsModel.cs ├── AutoFillService.cs ├── AutoShape.xaml ├── AutoShape.xaml.cs ├── BoxAndWhisker.xaml ├── BoxAndWhisker.xaml.cs ├── ColumnChart.xaml ├── ColumnChart.xaml.cs ├── Comments.xaml ├── Comments.xaml.cs ├── ConditionalFormatting.xaml ├── ConditionalFormatting.xaml.cs ├── CreateMacro.xaml ├── CreateMacro.xaml.cs ├── CreateSpreadsheet.xaml ├── CreateSpreadsheet.xaml.cs ├── Customer.cs ├── DataValidation.xaml ├── DataValidation.xaml.cs ├── EditMacro.xaml ├── EditMacro.xaml.cs ├── EncryptAndDecrypt.xaml ├── EncryptAndDecrypt.xaml.cs ├── ExcelToJSON.xaml ├── ExcelToJSON.xaml.cs ├── ExcelToPDF.xaml ├── ExcelToPDF.xaml.cs ├── ExcelToPDFUA.xaml ├── ExcelToPDFUA.xaml.cs ├── ExpensesReport.xaml ├── ExpensesReport.xaml.cs ├── FormatCells.xaml ├── FormatCells.xaml.cs ├── Formula.xaml ├── Formula.xaml.cs ├── GroupShape.xaml ├── GroupShape.xaml.cs ├── ImportCollectionObject.xaml ├── ImportCollectionObject.xaml.cs ├── ImportHTMLTable.xaml ├── ImportHTMLTable.xaml.cs ├── InputTemplate.cs ├── Invoice.xaml ├── Invoice.xaml.cs ├── PivotTable.xaml ├── PivotTable.xaml.cs ├── PivotTableLayout.xaml ├── PivotTableLayout.xaml.cs ├── Slicer.xaml ├── Slicer.xaml.cs ├── Sorting.xaml ├── Sorting.xaml.cs ├── Sparklines.xaml ├── Sparklines.xaml.cs ├── Sunburst.xaml ├── Sunburst.xaml.cs ├── Tables.xaml ├── Tables.xaml.cs ├── TemplateMarker.xaml ├── TemplateMarker.xaml.cs ├── Treemap.xaml ├── Treemap.xaml.cs ├── WhatIfAnalysis.xaml ├── WhatIfAnalysis.xaml.cs ├── WorksheetToImage.xaml ├── WorksheetToImage.xaml.cs ├── YearlySales.xaml └── YearlySales.xaml.cs ├── app.manifest └── syncfusion.xlsio.props /.gitignore: -------------------------------------------------------------------------------- 1 | */obj/ 2 | */bin/ 3 | */.vs/ 4 | samplebrowser/AppPackages/ 5 | *.user 6 | editor/syncfusion.editordemos.winui_net50 (Package)/ 7 | calendar/syncfusion.calendardemos.winui_net50 (Package)/ 8 | -------------------------------------------------------------------------------- /RepositoryInfo.json: -------------------------------------------------------------------------------- 1 | { 2 | "Name": "samplebrowser-winui", 3 | "Platforms": [{ 4 | "Name": "WinUI", 5 | "IsPublishWinUISampleBrowser": true, 6 | "Assemblies": [ 7 | { 8 | "Name": "samplebrowser.winui_net80", 9 | "EnableFxCopAnalyzer": false, 10 | "TreatWarningsAsErrors": false, 11 | "IsBuildWinUISampleBrowser": true, 12 | "IsNetStandardAssembly": true 13 | } 14 | ] 15 | }] 16 | } 17 | -------------------------------------------------------------------------------- /SB/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/SB/App.ico -------------------------------------------------------------------------------- /SB/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/SB/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /SB/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/SB/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /SB/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/SB/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /SB/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/SB/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /SB/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/SB/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /SB/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/SB/Assets/StoreLogo.png -------------------------------------------------------------------------------- /SB/Assets/Tiles/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/SB/Assets/Tiles/LargeTile.scale-100.png -------------------------------------------------------------------------------- /SB/Assets/Tiles/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/SB/Assets/Tiles/LargeTile.scale-200.png -------------------------------------------------------------------------------- /SB/Assets/Tiles/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/SB/Assets/Tiles/LargeTile.scale-400.png -------------------------------------------------------------------------------- /SB/Assets/Tiles/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/SB/Assets/Tiles/SmallTile.scale-100.png -------------------------------------------------------------------------------- /SB/Assets/Tiles/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/SB/Assets/Tiles/SmallTile.scale-200.png -------------------------------------------------------------------------------- /SB/Assets/Tiles/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/SB/Assets/Tiles/SmallTile.scale-400.png -------------------------------------------------------------------------------- /SB/Assets/Tiles/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/SB/Assets/Tiles/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /SB/Assets/Tiles/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/SB/Assets/Tiles/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /SB/Assets/Tiles/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/SB/Assets/Tiles/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /SB/Assets/Tiles/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/SB/Assets/Tiles/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /SB/Assets/Tiles/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/SB/Assets/Tiles/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /SB/Assets/Tiles/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/SB/Assets/Tiles/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /SB/Assets/Tiles/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/SB/Assets/Tiles/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /SB/Assets/Tiles/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/SB/Assets/Tiles/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /SB/Assets/Tiles/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/SB/Assets/Tiles/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /SB/Assets/Tiles/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/SB/Assets/Tiles/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /SB/Assets/Tiles/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/SB/Assets/Tiles/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /SB/Assets/Tiles/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/SB/Assets/Tiles/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /SB/Assets/Tiles/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/SB/Assets/Tiles/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /SB/Assets/Tiles/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/SB/Assets/Tiles/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /SB/Assets/Tiles/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/SB/Assets/Tiles/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /SB/Assets/Tiles/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/SB/Assets/Tiles/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /SB/Assets/Tiles/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/SB/Assets/Tiles/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /SB/Assets/Tiles/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/SB/Assets/Tiles/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /SB/Assets/Tiles/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/SB/Assets/Tiles/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /SB/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/SB/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /SB/Products.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /SB/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "SampleBrowser.WinUI": { 4 | "commandName": "MsixPackage" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /SB/syncfusion.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/SB/syncfusion.pfx -------------------------------------------------------------------------------- /avatarview/Assets/AvatarView/Finley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/avatarview/Assets/AvatarView/Finley.png -------------------------------------------------------------------------------- /avatarview/Assets/AvatarView/Gabriella.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/avatarview/Assets/AvatarView/Gabriella.png -------------------------------------------------------------------------------- /avatarview/Assets/AvatarView/Jayden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/avatarview/Assets/AvatarView/Jayden.png -------------------------------------------------------------------------------- /avatarview/Assets/AvatarView/Michael.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/avatarview/Assets/AvatarView/Michael.png -------------------------------------------------------------------------------- /avatarview/Assets/AvatarView/Oscar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/avatarview/Assets/AvatarView/Oscar.png -------------------------------------------------------------------------------- /avatarview/Assets/AvatarView/Person1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/avatarview/Assets/AvatarView/Person1.png -------------------------------------------------------------------------------- /avatarview/Assets/AvatarView/Sarah.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/avatarview/Assets/AvatarView/Sarah.png -------------------------------------------------------------------------------- /avatarview/Assets/AvatarView/Victoriya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/avatarview/Assets/AvatarView/Victoriya.png -------------------------------------------------------------------------------- /avatarview/Assets/AvatarView/gettingstarted_xaml.txt: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /avatarview/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/avatarview/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /avatarview/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/avatarview/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /avatarview/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/avatarview/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /avatarview/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/avatarview/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /avatarview/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/avatarview/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /avatarview/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/avatarview/Assets/StoreLogo.png -------------------------------------------------------------------------------- /avatarview/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/avatarview/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /avatarview/MainWindow.xaml: -------------------------------------------------------------------------------- 1 |  8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /avatarview/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "Syncfusion.AvatarViewDemos.WinUI": { 4 | "commandName": "MsixPackage" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /barcode/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/barcode/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /barcode/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/barcode/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /barcode/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/barcode/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /barcode/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/barcode/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /barcode/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/barcode/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /barcode/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/barcode/Assets/StoreLogo.png -------------------------------------------------------------------------------- /barcode/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/barcode/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /barcode/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "Syncfusion.BarcodeDemos.WinUI": { 4 | "commandName": "MsixPackage" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /barcode/syncfusion.barcodedemos.winui_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/barcode/syncfusion.barcodedemos.winui_TemporaryKey.pfx -------------------------------------------------------------------------------- /build/tools/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /calendar/Assets/Cal/BlackoutDates_xaml.txt: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /calendar/Assets/Cal/CalendarTypes_xaml.txt: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /calendar/Assets/Cal/DateNavigation_xaml.txt: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /calendar/Assets/Cal/Formatting_xaml.txt: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /calendar/Assets/Cal/SimpleCalendar_xaml.txt: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /calendar/Assets/Cal/WeekNumber_xaml.txt: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /calendar/Assets/CalDP/BlackoutDates_xaml.txt: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /calendar/Assets/CalDP/CalendarTypes_xaml.txt: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /calendar/Assets/CalDP/Formatting_xaml.txt: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /calendar/Assets/CalDP/Navigation_xaml.txt: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /calendar/Assets/CalDP/SimpleCalendarDatePicker_xaml.txt: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /calendar/Assets/CalDRP/BlackoutDates_xaml.txt: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /calendar/Assets/CalDRP/CalendarTypes_xaml.txt: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /calendar/Assets/CalDRP/DateRangePicker_xaml.txt: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /calendar/Assets/CalDRP/Formatting_xaml.txt: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /calendar/Assets/CalDRP/Navigation_xaml.txt: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /calendar/Assets/CalDRP/Preset_xaml.txt: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /calendar/Assets/CalDRP/RangeSelection_xaml.txt: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /calendar/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/calendar/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /calendar/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/calendar/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /calendar/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/calendar/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /calendar/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/calendar/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /calendar/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/calendar/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /calendar/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/calendar/Assets/StoreLogo.png -------------------------------------------------------------------------------- /calendar/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/calendar/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /calendar/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "Syncfusion.CalendarDemos.WinUI": { 4 | "commandName": "MsixPackage" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /calendar/syncfusion.calendardemos.winui_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/calendar/syncfusion.calendardemos.winui_TemporaryKey.pfx -------------------------------------------------------------------------------- /chart/Assets/Chart/Rolls-Royce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/chart/Assets/Chart/Rolls-Royce.png -------------------------------------------------------------------------------- /chart/Assets/Chart/audi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/chart/Assets/Chart/audi.png -------------------------------------------------------------------------------- /chart/Assets/Chart/benz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/chart/Assets/Chart/benz.png -------------------------------------------------------------------------------- /chart/Assets/Chart/bmw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/chart/Assets/Chart/bmw.png -------------------------------------------------------------------------------- /chart/Assets/Chart/jaguar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/chart/Assets/Chart/jaguar.png -------------------------------------------------------------------------------- /chart/Assets/Chart/skoda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/chart/Assets/Chart/skoda.png -------------------------------------------------------------------------------- /chart/Assets/Chart/volvo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/chart/Assets/Chart/volvo.png -------------------------------------------------------------------------------- /chart/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/chart/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /chart/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/chart/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /chart/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/chart/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /chart/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/chart/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /chart/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/chart/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /chart/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/chart/Assets/StoreLogo.png -------------------------------------------------------------------------------- /chart/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/chart/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /chart/MainWindow.xaml: -------------------------------------------------------------------------------- 1 |  9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /chart/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "Syncfusion.ChartDemos.WinUI": { 4 | "commandName": "MsixPackage" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /chart/syncfusion.chartdemos.winui_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/chart/syncfusion.chartdemos.winui_TemporaryKey.pfx -------------------------------------------------------------------------------- /chat/Assets/Chat/Feed_Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/chat/Assets/Chat/Feed_Image.png -------------------------------------------------------------------------------- /chat/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/chat/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /chat/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/chat/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /chat/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/chat/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /chat/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/chat/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /chat/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/chat/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /chat/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/chat/Assets/StoreLogo.png -------------------------------------------------------------------------------- /chat/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/chat/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /chat/MainWindow.xaml: -------------------------------------------------------------------------------- 1 |  8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /chat/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "Syncfusion.ChatDemos.WinUI": { 4 | "commandName": "MsixPackage" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/Assets/BannerImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/BannerImage.jpg -------------------------------------------------------------------------------- /common/Assets/BannerImageDesktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/BannerImageDesktop.png -------------------------------------------------------------------------------- /common/Assets/Control Images/AIAssistView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/Control Images/AIAssistView.png -------------------------------------------------------------------------------- /common/Assets/Control Images/AutoComplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/Control Images/AutoComplete.png -------------------------------------------------------------------------------- /common/Assets/Control Images/AvatarView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/Control Images/AvatarView.png -------------------------------------------------------------------------------- /common/Assets/Control Images/Badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/Control Images/Badge.png -------------------------------------------------------------------------------- /common/Assets/Control Images/Barcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/Control Images/Barcode.png -------------------------------------------------------------------------------- /common/Assets/Control Images/BusyIndicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/Control Images/BusyIndicator.png -------------------------------------------------------------------------------- /common/Assets/Control Images/Calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/Control Images/Calendar.png -------------------------------------------------------------------------------- /common/Assets/Control Images/CalendarDatePicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/Control Images/CalendarDatePicker.png -------------------------------------------------------------------------------- /common/Assets/Control Images/CalendarDateRangePicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/Control Images/CalendarDateRangePicker.png -------------------------------------------------------------------------------- /common/Assets/Control Images/CartesianChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/Control Images/CartesianChart.png -------------------------------------------------------------------------------- /common/Assets/Control Images/Chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/Control Images/Chat.png -------------------------------------------------------------------------------- /common/Assets/Control Images/CircularChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/Control Images/CircularChart.png -------------------------------------------------------------------------------- /common/Assets/Control Images/ColorPalette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/Control Images/ColorPalette.png -------------------------------------------------------------------------------- /common/Assets/Control Images/ColorPicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/Control Images/ColorPicker.png -------------------------------------------------------------------------------- /common/Assets/Control Images/ComboBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/Control Images/ComboBox.png -------------------------------------------------------------------------------- /common/Assets/Control Images/DataGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/Control Images/DataGrid.png -------------------------------------------------------------------------------- /common/Assets/Control Images/DatePicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/Control Images/DatePicker.png -------------------------------------------------------------------------------- /common/Assets/Control Images/DocIO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/Control Images/DocIO.png -------------------------------------------------------------------------------- /common/Assets/Control Images/DropDownColorPalette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/Control Images/DropDownColorPalette.png -------------------------------------------------------------------------------- /common/Assets/Control Images/DropDownColorPicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/Control Images/DropDownColorPicker.png -------------------------------------------------------------------------------- /common/Assets/Control Images/FunnelChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/Control Images/FunnelChart.png -------------------------------------------------------------------------------- /common/Assets/Control Images/Kanban.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/Control Images/Kanban.png -------------------------------------------------------------------------------- /common/Assets/Control Images/LinearGauge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/Control Images/LinearGauge.png -------------------------------------------------------------------------------- /common/Assets/Control Images/NumberBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/Control Images/NumberBox.png -------------------------------------------------------------------------------- /common/Assets/Control Images/PDF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/Control Images/PDF.png -------------------------------------------------------------------------------- /common/Assets/Control Images/PolarChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/Control Images/PolarChart.png -------------------------------------------------------------------------------- /common/Assets/Control Images/Presentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/Control Images/Presentation.png -------------------------------------------------------------------------------- /common/Assets/Control Images/PyramidChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/Control Images/PyramidChart.png -------------------------------------------------------------------------------- /common/Assets/Control Images/RadialGauge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/Control Images/RadialGauge.png -------------------------------------------------------------------------------- /common/Assets/Control Images/RangeSlider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/Control Images/RangeSlider.png -------------------------------------------------------------------------------- /common/Assets/Control Images/Rating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/Control Images/Rating.png -------------------------------------------------------------------------------- /common/Assets/Control Images/Ribbon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/Control Images/Ribbon.png -------------------------------------------------------------------------------- /common/Assets/Control Images/Scheduler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/Control Images/Scheduler.png -------------------------------------------------------------------------------- /common/Assets/Control Images/SegmentedControl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/Control Images/SegmentedControl.png -------------------------------------------------------------------------------- /common/Assets/Control Images/SfMaskedTextBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/Control Images/SfMaskedTextBox.png -------------------------------------------------------------------------------- /common/Assets/Control Images/SfShimmer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/Control Images/SfShimmer.png -------------------------------------------------------------------------------- /common/Assets/Control Images/Shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/Control Images/Shadow.png -------------------------------------------------------------------------------- /common/Assets/Control Images/Slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/Control Images/Slider.png -------------------------------------------------------------------------------- /common/Assets/Control Images/SmartAISolution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/Control Images/SmartAISolution.png -------------------------------------------------------------------------------- /common/Assets/Control Images/TimePicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/Control Images/TimePicker.png -------------------------------------------------------------------------------- /common/Assets/Control Images/TreeGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/Control Images/TreeGrid.png -------------------------------------------------------------------------------- /common/Assets/Control Images/TreeView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/Control Images/TreeView.png -------------------------------------------------------------------------------- /common/Assets/Control Images/XlsIO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/Control Images/XlsIO.png -------------------------------------------------------------------------------- /common/Assets/ControlIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/ControlIcons.ttf -------------------------------------------------------------------------------- /common/Assets/SBIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/common/Assets/SBIcons.ttf -------------------------------------------------------------------------------- /datagrid/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/datagrid/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /datagrid/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/datagrid/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /datagrid/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/datagrid/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /datagrid/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/datagrid/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /datagrid/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/datagrid/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /datagrid/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/datagrid/Assets/StoreLogo.png -------------------------------------------------------------------------------- /datagrid/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/datagrid/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /datagrid/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "Syncfusion.DataGridDemos.WinUI": { 4 | "commandName": "MsixPackage" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /datagrid/syncfusion.datagriddemos.winui_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/datagrid/syncfusion.datagriddemos.winui_TemporaryKey.pfx -------------------------------------------------------------------------------- /docio/Assets/DocIO/Adventure.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/docio/Assets/DocIO/Adventure.docx -------------------------------------------------------------------------------- /docio/Assets/DocIO/AdventureCycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/docio/Assets/DocIO/AdventureCycle.png -------------------------------------------------------------------------------- /docio/Assets/DocIO/Andrew Fuller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/docio/Assets/DocIO/Andrew Fuller.png -------------------------------------------------------------------------------- /docio/Assets/DocIO/CreateSmartArtInput.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/docio/Assets/DocIO/CreateSmartArtInput.docx -------------------------------------------------------------------------------- /docio/Assets/DocIO/Decrypt.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/docio/Assets/DocIO/Decrypt.docx -------------------------------------------------------------------------------- /docio/Assets/DocIO/EditEquationLaTeXInput.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/docio/Assets/DocIO/EditEquationLaTeXInput.docx -------------------------------------------------------------------------------- /docio/Assets/DocIO/EditSmartArtInput.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/docio/Assets/DocIO/EditSmartArtInput.docx -------------------------------------------------------------------------------- /docio/Assets/DocIO/EmployeesReportDemo.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/docio/Assets/DocIO/EmployeesReportDemo.docx -------------------------------------------------------------------------------- /docio/Assets/DocIO/HTMLToWord_cs.txt: -------------------------------------------------------------------------------- 1 | //Gets the input HTML file. 2 | using Stream fileStream = GetWordStream("HTMLToWord.html"); 3 | //Loads an existing HTML file. 4 | using WordDocument document = new(fileStream, FormatType.Html); 5 | //Saves the Word document to the memory stream. 6 | MemoryStream stream = new MemoryStream(); 7 | document.Save(stream, FormatType.Docx); 8 | //Closes the Word document. 9 | document.Close(); -------------------------------------------------------------------------------- /docio/Assets/DocIO/HeaderFooterTemplate.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/docio/Assets/DocIO/HeaderFooterTemplate.docx -------------------------------------------------------------------------------- /docio/Assets/DocIO/HeaderImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/docio/Assets/DocIO/HeaderImage.png -------------------------------------------------------------------------------- /docio/Assets/DocIO/Janet Leverling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/docio/Assets/DocIO/Janet Leverling.png -------------------------------------------------------------------------------- /docio/Assets/DocIO/Mountain200.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/docio/Assets/DocIO/Mountain200.jpg -------------------------------------------------------------------------------- /docio/Assets/DocIO/Mountain300.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/docio/Assets/DocIO/Mountain300.bmp -------------------------------------------------------------------------------- /docio/Assets/DocIO/Mountain300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/docio/Assets/DocIO/Mountain300.jpg -------------------------------------------------------------------------------- /docio/Assets/DocIO/Nancy Davolio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/docio/Assets/DocIO/Nancy Davolio.png -------------------------------------------------------------------------------- /docio/Assets/DocIO/Northwindlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/docio/Assets/DocIO/Northwindlogo.png -------------------------------------------------------------------------------- /docio/Assets/DocIO/OriginalDocument.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/docio/Assets/DocIO/OriginalDocument.docx -------------------------------------------------------------------------------- /docio/Assets/DocIO/RTFConversion_cs.txt: -------------------------------------------------------------------------------- 1 | //Gets the input RTF document. 2 | using Stream fileStream = GetWordStream("RTFtoWord.rtf"); 3 | //Creates a new Word document instance. 4 | using WordDocument document = new(); 5 | //Opens an existing RTF document. 6 | document.Open(fileStream, FormatType.Rtf); 7 | using MemoryStream ms = new(); 8 | //Saves the Word document to the memory stream. 9 | document.Save(ms, FormatType.Docx); -------------------------------------------------------------------------------- /docio/Assets/DocIO/RevisedDocument.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/docio/Assets/DocIO/RevisedDocument.docx -------------------------------------------------------------------------------- /docio/Assets/DocIO/Road550W.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/docio/Assets/DocIO/Road550W.jpg -------------------------------------------------------------------------------- /docio/Assets/DocIO/SalesInvoiceDemo.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/docio/Assets/DocIO/SalesInvoiceDemo.docx -------------------------------------------------------------------------------- /docio/Assets/DocIO/TableOfFiguresInput.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/docio/Assets/DocIO/TableOfFiguresInput.docx -------------------------------------------------------------------------------- /docio/Assets/DocIO/TemplateLetter.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/docio/Assets/DocIO/TemplateLetter.docx -------------------------------------------------------------------------------- /docio/Assets/DocIO/TemplateReading.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/docio/Assets/DocIO/TemplateReading.docx -------------------------------------------------------------------------------- /docio/Assets/DocIO/WordToHTML.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/docio/Assets/DocIO/WordToHTML.docx -------------------------------------------------------------------------------- /docio/Assets/DocIO/WordToHTML_cs.txt: -------------------------------------------------------------------------------- 1 | //Gets the input Word document. 2 | using Stream fileStream = GetWordStream("WordToHTML.docx"); 3 | //Loads an existing Word document. 4 | using WordDocument document = new(fileStream, FormatType.Automatic); 5 | //Saves the HTML to the memory stream. 6 | MemoryStream stream = new MemoryStream(); 7 | document.Save(stream, FormatType.Html); 8 | //Closes the Word document. 9 | document.Close(); -------------------------------------------------------------------------------- /docio/Assets/DocIO/WordToMarkdown_cs.txt: -------------------------------------------------------------------------------- 1 | //Gets the input Word document. 2 | using Stream fileStream = GetWordStream("WordtoMD.docx"); 3 | //Loads an existing Word document. 4 | using WordDocument document = new(fileStream, FormatType.Automatic); 5 | using MemoryStream ms = new(); 6 | //Saves the Markdown document to the memory stream. 7 | document.Save(ms, FormatType.Markdown); 8 | ms.Position = 0; -------------------------------------------------------------------------------- /docio/Assets/DocIO/WordtoMD.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/docio/Assets/DocIO/WordtoMD.docx -------------------------------------------------------------------------------- /docio/Assets/DocIO/WordtoPDF.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/docio/Assets/DocIO/WordtoPDF.docx -------------------------------------------------------------------------------- /docio/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/docio/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /docio/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/docio/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /docio/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/docio/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /docio/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/docio/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /docio/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/docio/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /docio/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/docio/Assets/StoreLogo.png -------------------------------------------------------------------------------- /docio/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/docio/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /docio/MainWindow.xaml: -------------------------------------------------------------------------------- 1 |  9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /docio/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "Syncfusion.DocIODemos.WinUI": { 4 | "commandName": "MsixPackage" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /docio/syncfusion.dociodemos.winui_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/docio/syncfusion.dociodemos.winui_TemporaryKey.pfx -------------------------------------------------------------------------------- /editor/Assets/AutoComplete/AutoAppend_xaml.txt: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /editor/Assets/AutoComplete/GettingStarted_xaml.txt: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /editor/Assets/AutoComplete/Highlighting_xaml.txt: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /editor/Assets/AutoComplete/LeadingView_xaml.txt: -------------------------------------------------------------------------------- 1 |  2 | 3 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /editor/Assets/AutoComplete/MultiSelection_xaml.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /editor/Assets/AutoComplete/StandardFiltering_xaml.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /editor/Assets/ColorPalette/SimpleColorPalette_xaml.txt: -------------------------------------------------------------------------------- 1 |  5 | -------------------------------------------------------------------------------- /editor/Assets/ColorPicker/ColorPickerModes_xaml.txt: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /editor/Assets/ColorPicker/SolidColorPicker_xaml.txt: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /editor/Assets/ComboBox/AutoAppend_xaml.txt: -------------------------------------------------------------------------------- 1 |  3 | -------------------------------------------------------------------------------- /editor/Assets/ComboBox/Employees/Employee1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/editor/Assets/ComboBox/Employees/Employee1.png -------------------------------------------------------------------------------- /editor/Assets/ComboBox/Employees/Employee10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/editor/Assets/ComboBox/Employees/Employee10.png -------------------------------------------------------------------------------- /editor/Assets/ComboBox/Employees/Employee2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/editor/Assets/ComboBox/Employees/Employee2.png -------------------------------------------------------------------------------- /editor/Assets/ComboBox/Employees/Employee3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/editor/Assets/ComboBox/Employees/Employee3.png -------------------------------------------------------------------------------- /editor/Assets/ComboBox/Employees/Employee4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/editor/Assets/ComboBox/Employees/Employee4.png -------------------------------------------------------------------------------- /editor/Assets/ComboBox/Employees/Employee5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/editor/Assets/ComboBox/Employees/Employee5.png -------------------------------------------------------------------------------- /editor/Assets/ComboBox/Employees/Employee6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/editor/Assets/ComboBox/Employees/Employee6.png -------------------------------------------------------------------------------- /editor/Assets/ComboBox/Employees/Employee7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/editor/Assets/ComboBox/Employees/Employee7.png -------------------------------------------------------------------------------- /editor/Assets/ComboBox/Employees/Employee8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/editor/Assets/ComboBox/Employees/Employee8.png -------------------------------------------------------------------------------- /editor/Assets/ComboBox/Employees/Employee9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/editor/Assets/ComboBox/Employees/Employee9.png -------------------------------------------------------------------------------- /editor/Assets/ComboBox/Employees/NewEmployee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/editor/Assets/ComboBox/Employees/NewEmployee.png -------------------------------------------------------------------------------- /editor/Assets/ComboBox/Filtering_xaml.txt: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /editor/Assets/ComboBox/GettingStarted_xaml.txt: -------------------------------------------------------------------------------- 1 |  4 | 5 | 6 | 7 | 8 | 9 | ... 10 | -------------------------------------------------------------------------------- /editor/Assets/ComboBox/Highlighting_xaml.txt: -------------------------------------------------------------------------------- 1 |  6 | -------------------------------------------------------------------------------- /editor/Assets/ComboBox/LeadingView_xaml.txt: -------------------------------------------------------------------------------- 1 |  2 | 3 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /editor/Assets/ComboBox/MultiSelectionBoxItemTemplate_cs.txt: -------------------------------------------------------------------------------- 1 | public MultiSelection() 2 | { 3 | this.InitializeComponent(); 4 | this.customMultipleSelectionBox.SelectedItems.Add(comboBoxViewModel.VegetablesList[1]); 5 | this.customMultipleSelectionBox.SelectedItems.Add(comboBoxViewModel.VegetablesList[2]); 6 | } -------------------------------------------------------------------------------- /editor/Assets/ComboBox/MultiSelection_xaml.txt: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /editor/Assets/ComboBox/Searching_xaml.txt: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /editor/Assets/DDColorPalette/SplitMode_xaml.txt: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /editor/Assets/DDColorPicker/GradientBrushType_xaml.txt: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /editor/Assets/DDColorPicker/SplitMode_xaml.txt: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /editor/Assets/DatePicker/BlackoutDateTemplate_xaml.txt: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /editor/Assets/DatePicker/CustomFormatString_cs.txt: -------------------------------------------------------------------------------- 1 | private void OnDateFieldPrepared(object sender, Syncfusion.UI.Xaml.Editors.DateTimeFieldPreparedEventArgs e) 2 | { 3 | if (e.Column != null && e.Column.Field == Syncfusion.UI.Xaml.Editors.DateTimeField.Day) 4 | { 5 | e.Column.Format = "ddd dd"; 6 | e.Column.ItemTemplate = this.Resources["CustomFormatTemplate"] as DataTemplate; 7 | } 8 | } -------------------------------------------------------------------------------- /editor/Assets/DatePicker/CustomFormatString_xaml.txt: -------------------------------------------------------------------------------- 1 |  6 | -------------------------------------------------------------------------------- /editor/Assets/DatePicker/DateTimeFormatting_xaml.txt: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /editor/Assets/DatePicker/ExcludeWeekEndDates_xaml.txt: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /editor/Assets/DatePicker/ItemContainerStyle_xaml.txt: -------------------------------------------------------------------------------- 1 |  5 | -------------------------------------------------------------------------------- /editor/Assets/DatePicker/ItemCustomization_xaml.txt: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /editor/Assets/DatePicker/SimpleDatePicker_xaml.txt: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /editor/Assets/DatePicker/ViewCustomization_xaml.txt: -------------------------------------------------------------------------------- 1 |  6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /editor/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/editor/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /editor/Assets/MaskedTextBox/CustomIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/editor/Assets/MaskedTextBox/CustomIcon.png -------------------------------------------------------------------------------- /editor/Assets/MaskedTextBox/errortype_xaml.txt: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /editor/Assets/MaskedTextBox/errortype_xaml_cs.txt: -------------------------------------------------------------------------------- 1 | private void errorTypeMaskTextBox_ValueChanging(object sender, MaskedTextBoxValueChangingEventArgs e) 2 | { 3 | errorTypeMaskTextBox.ErrorType = e.IsValid ? ErrorType.Success : errorType; 4 | } -------------------------------------------------------------------------------- /editor/Assets/MaskedTextBox/literalsandprompt_xaml.txt: -------------------------------------------------------------------------------- 1 |  5 | -------------------------------------------------------------------------------- /editor/Assets/NumberBox/Basque.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/editor/Assets/NumberBox/Basque.png -------------------------------------------------------------------------------- /editor/Assets/NumberBox/Formatting_xaml.txt: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /editor/Assets/NumberBox/India.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/editor/Assets/NumberBox/India.png -------------------------------------------------------------------------------- /editor/Assets/NumberBox/Mexico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/editor/Assets/NumberBox/Mexico.png -------------------------------------------------------------------------------- /editor/Assets/NumberBox/Portugal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/editor/Assets/NumberBox/Portugal.png -------------------------------------------------------------------------------- /editor/Assets/NumberBox/Russia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/editor/Assets/NumberBox/Russia.png -------------------------------------------------------------------------------- /editor/Assets/NumberBox/TextBoxVisibility_xaml.txt: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /editor/Assets/NumberBox/UnitedKingdom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/editor/Assets/NumberBox/UnitedKingdom.png -------------------------------------------------------------------------------- /editor/Assets/NumberBox/UnitedStates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/editor/Assets/NumberBox/UnitedStates.png -------------------------------------------------------------------------------- /editor/Assets/NumberBox/china.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/editor/Assets/NumberBox/china.png -------------------------------------------------------------------------------- /editor/Assets/NumberBox/france.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/editor/Assets/NumberBox/france.png -------------------------------------------------------------------------------- /editor/Assets/NumberBox/turkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/editor/Assets/NumberBox/turkey.png -------------------------------------------------------------------------------- /editor/Assets/Rating/ExcitedSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/editor/Assets/Rating/ExcitedSelected.png -------------------------------------------------------------------------------- /editor/Assets/Rating/ExcitedUnselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/editor/Assets/Rating/ExcitedUnselected.png -------------------------------------------------------------------------------- /editor/Assets/Rating/HappySelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/editor/Assets/Rating/HappySelected.png -------------------------------------------------------------------------------- /editor/Assets/Rating/HappyUnselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/editor/Assets/Rating/HappyUnselected.png -------------------------------------------------------------------------------- /editor/Assets/Rating/NeutralSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/editor/Assets/Rating/NeutralSelected.png -------------------------------------------------------------------------------- /editor/Assets/Rating/NeutralUnselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/editor/Assets/Rating/NeutralUnselected.png -------------------------------------------------------------------------------- /editor/Assets/Rating/SadSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/editor/Assets/Rating/SadSelected.png -------------------------------------------------------------------------------- /editor/Assets/Rating/SadUnselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/editor/Assets/Rating/SadUnselected.png -------------------------------------------------------------------------------- /editor/Assets/Rating/UnhappySelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/editor/Assets/Rating/UnhappySelected.png -------------------------------------------------------------------------------- /editor/Assets/Rating/UnhappyUnselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/editor/Assets/Rating/UnhappyUnselected.png -------------------------------------------------------------------------------- /editor/Assets/Rating/defaultstyle_xaml.txt: -------------------------------------------------------------------------------- 1 |  7 | 8 | -------------------------------------------------------------------------------- /editor/Assets/Rating/imagetemplateselector_cs.txt: -------------------------------------------------------------------------------- 1 | protected override DataTemplate SelectTemplateCore(object item, DependencyObject container) 2 | { 3 | SfRating rating = container as SfRating; 4 | SfRatingItem ratingItem = item as SfRatingItem; 5 | if(ratingItem == null) 6 | return null; 7 | if(ratingItem.IsSelected) 8 | if (rating.Items.IndexOf(ratingItem)+1 == (rating.Value)) 9 | return SadTemplate; 10 | return SadUnselectedTemplate; 11 | } -------------------------------------------------------------------------------- /editor/Assets/Rating/pathtemplateselector_cs.txt: -------------------------------------------------------------------------------- 1 | protected override DataTemplate SelectTemplateCore(object item, DependencyObject container) 2 | { 3 | SfRatingItem ratingItem = item as SfRatingItem; 4 | if (ratingItem == null) 5 | return null; 6 | if (ratingItem.IsSelected) 7 | return SelectedTemplate; 8 | return UnselectedTemplate; 9 | } -------------------------------------------------------------------------------- /editor/Assets/Rating/viewtemplateselector_cs.txt: -------------------------------------------------------------------------------- 1 | protected override DataTemplate SelectTemplateCore(object item, DependencyObject container) 2 | { 3 | SfRating Rating = container as SfRating; 4 | SfRatingItem RatingItem = item as SfRatingItem; 5 | if(RatingItem == null) 6 | return null; 7 | if(RatingItem.IsSelected) 8 | if (Rating.Items.IndexOf(RatingItem)+1 == (Rating.Value)) 9 | return SelectedTemplate; 10 | return UnselectedTemplate; 11 | } -------------------------------------------------------------------------------- /editor/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/editor/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /editor/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/editor/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /editor/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/editor/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /editor/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/editor/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /editor/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/editor/Assets/StoreLogo.png -------------------------------------------------------------------------------- /editor/Assets/TimePicker/ItemCustomization_xaml.txt: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /editor/Assets/TimePicker/ItemTemplateSelector_xaml.txt: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | ... 10 | 11 | 12 | -------------------------------------------------------------------------------- /editor/Assets/TimePicker/SimpleTimePicker_xaml.txt: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /editor/Assets/TimePicker/TimeFormatting_xaml.txt: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /editor/Assets/TimePicker/ViewCustomization_xaml.txt: -------------------------------------------------------------------------------- 1 |  6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /editor/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/editor/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /editor/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "Syncfusion.EditorDemos.WinUI": { 4 | "commandName": "MsixPackage" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /editor/syncfusion.editordemos.winui_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/editor/syncfusion.editordemos.winui_TemporaryKey.pfx -------------------------------------------------------------------------------- /gitleaksignore.txt: -------------------------------------------------------------------------------- 1 | \pdf\Views\Encryption.xaml.cs:generic-api-key:44 2 | \pdf\Views\Encryption.xaml.cs:generic-api-key:50 3 | \pdf\Views\Encryption.xaml.cs:generic-api-key:56 4 | \pdf\Views\Encryption.xaml.cs:generic-api-key:62 5 | \pdf\Views\Encryption.xaml.cs:generic-api-key:74 -------------------------------------------------------------------------------- /kanban/Assets/Kanban/Bucolicpie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/kanban/Assets/Kanban/Bucolicpie.png -------------------------------------------------------------------------------- /kanban/Assets/Kanban/Bumpercrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/kanban/Assets/Kanban/Bumpercrop.png -------------------------------------------------------------------------------- /kanban/Assets/Kanban/DoubleCheeseMargherita.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/kanban/Assets/Kanban/DoubleCheeseMargherita.png -------------------------------------------------------------------------------- /kanban/Assets/Kanban/Margherita.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/kanban/Assets/Kanban/Margherita.png -------------------------------------------------------------------------------- /kanban/Assets/Kanban/MexicanGreenWave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/kanban/Assets/Kanban/MexicanGreenWave.png -------------------------------------------------------------------------------- /kanban/Assets/Kanban/People_Circle1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/kanban/Assets/Kanban/People_Circle1.png -------------------------------------------------------------------------------- /kanban/Assets/Kanban/People_Circle10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/kanban/Assets/Kanban/People_Circle10.png -------------------------------------------------------------------------------- /kanban/Assets/Kanban/People_Circle11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/kanban/Assets/Kanban/People_Circle11.png -------------------------------------------------------------------------------- /kanban/Assets/Kanban/People_Circle12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/kanban/Assets/Kanban/People_Circle12.png -------------------------------------------------------------------------------- /kanban/Assets/Kanban/People_Circle13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/kanban/Assets/Kanban/People_Circle13.png -------------------------------------------------------------------------------- /kanban/Assets/Kanban/People_Circle14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/kanban/Assets/Kanban/People_Circle14.png -------------------------------------------------------------------------------- /kanban/Assets/Kanban/People_Circle17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/kanban/Assets/Kanban/People_Circle17.png -------------------------------------------------------------------------------- /kanban/Assets/Kanban/People_Circle2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/kanban/Assets/Kanban/People_Circle2.png -------------------------------------------------------------------------------- /kanban/Assets/Kanban/People_Circle23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/kanban/Assets/Kanban/People_Circle23.png -------------------------------------------------------------------------------- /kanban/Assets/Kanban/People_Circle3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/kanban/Assets/Kanban/People_Circle3.png -------------------------------------------------------------------------------- /kanban/Assets/Kanban/People_Circle31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/kanban/Assets/Kanban/People_Circle31.png -------------------------------------------------------------------------------- /kanban/Assets/Kanban/People_Circle35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/kanban/Assets/Kanban/People_Circle35.png -------------------------------------------------------------------------------- /kanban/Assets/Kanban/People_Circle4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/kanban/Assets/Kanban/People_Circle4.png -------------------------------------------------------------------------------- /kanban/Assets/Kanban/People_Circle5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/kanban/Assets/Kanban/People_Circle5.png -------------------------------------------------------------------------------- /kanban/Assets/Kanban/People_Circle6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/kanban/Assets/Kanban/People_Circle6.png -------------------------------------------------------------------------------- /kanban/Assets/Kanban/People_Circle7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/kanban/Assets/Kanban/People_Circle7.png -------------------------------------------------------------------------------- /kanban/Assets/Kanban/People_Circle8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/kanban/Assets/Kanban/People_Circle8.png -------------------------------------------------------------------------------- /kanban/Assets/Kanban/People_Circle9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/kanban/Assets/Kanban/People_Circle9.png -------------------------------------------------------------------------------- /kanban/Assets/Kanban/People_Circle_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/kanban/Assets/Kanban/People_Circle_0.png -------------------------------------------------------------------------------- /kanban/Assets/Kanban/Saladdaze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/kanban/Assets/Kanban/Saladdaze.png -------------------------------------------------------------------------------- /kanban/Assets/Kanban/Spiceoflife.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/kanban/Assets/Kanban/Spiceoflife.png -------------------------------------------------------------------------------- /kanban/Assets/Kanban/Verynicoise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/kanban/Assets/Kanban/Verynicoise.png -------------------------------------------------------------------------------- /kanban/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/kanban/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /kanban/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/kanban/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /kanban/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/kanban/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /kanban/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/kanban/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /kanban/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/kanban/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /kanban/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/kanban/Assets/StoreLogo.png -------------------------------------------------------------------------------- /kanban/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/kanban/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /kanban/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "Syncfusion.KanbanDemos.WinUI": { 4 | "commandName": "MsixPackage" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /lineargauge/Assets/LinearGauge/BarPointer.xaml.txt: -------------------------------------------------------------------------------- 1 |  2 | 3 | 8 | 9 | -------------------------------------------------------------------------------- /lineargauge/Assets/LinearGauge/HeightCalculatorDemo.xaml.cs.txt: -------------------------------------------------------------------------------- 1 | private void shapePointer_ValueChanging(object sender, ValueChangingEventArgs e) 2 | { 3 | if (e.NewValue < 50) 4 | { 5 | e.Cancel = true; 6 | } 7 | } -------------------------------------------------------------------------------- /lineargauge/Assets/LinearGauge/HeightCalculatorImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/lineargauge/Assets/LinearGauge/HeightCalculatorImage.png -------------------------------------------------------------------------------- /lineargauge/Assets/LinearGauge/MultiplePointers.xaml.cs.txt: -------------------------------------------------------------------------------- 1 | private void shapePointer1_ValueChanging(object sender, ValueChangingEventArgs e) 2 | { 3 | if (e.NewValue <= 5) 4 | { 5 | e.Cancel = true; 6 | } 7 | } -------------------------------------------------------------------------------- /lineargauge/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/lineargauge/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /lineargauge/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/lineargauge/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /lineargauge/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/lineargauge/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /lineargauge/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/lineargauge/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /lineargauge/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/lineargauge/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /lineargauge/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/lineargauge/Assets/StoreLogo.png -------------------------------------------------------------------------------- /lineargauge/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/lineargauge/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /lineargauge/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "Syncfusion.LinearGaugeDemos.WinUI": { 4 | "commandName": "MsixPackage" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /lineargauge/syncfusion.lineargaugedemos.winui_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/lineargauge/syncfusion.lineargaugedemos.winui_TemporaryKey.pfx -------------------------------------------------------------------------------- /notification/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/notification/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /notification/Assets/Notification/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/notification/Assets/Notification/avatar.png -------------------------------------------------------------------------------- /notification/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/notification/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /notification/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/notification/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /notification/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/notification/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /notification/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/notification/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /notification/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/notification/Assets/StoreLogo.png -------------------------------------------------------------------------------- /notification/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/notification/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /notification/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "Syncfusion.NotificationDemos.WinUI": { 4 | "commandName": "MsixPackage" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /notification/syncfusion.notificationdemos.winui_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/notification/syncfusion.notificationdemos.winui_TemporaryKey.pfx -------------------------------------------------------------------------------- /pdf/Assets/AdventureCycle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/pdf/Assets/AdventureCycle.jpg -------------------------------------------------------------------------------- /pdf/Assets/AdventureCycle.txt: -------------------------------------------------------------------------------- 1 | Adventure Works Cycles, the fictitious company on which the AdventureWorks sample databases are based, is a large, multinational manufacturing company. The company manufactures and sells metal and composite bicycles to North American, European and Asian commercial markets. While its base operation is located in Bothell, Washington with 290 employees, several regional sales teams are located throughout their market base. -------------------------------------------------------------------------------- /pdf/Assets/AdventureWork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/pdf/Assets/AdventureWork.png -------------------------------------------------------------------------------- /pdf/Assets/Pdf_Succinctly_img_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/pdf/Assets/Pdf_Succinctly_img_1.jpg -------------------------------------------------------------------------------- /pdf/Assets/Pdf_Succinctly_img_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/pdf/Assets/Pdf_Succinctly_img_2.jpg -------------------------------------------------------------------------------- /pdf/Assets/Pdf_Succinctly_img_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/pdf/Assets/Pdf_Succinctly_img_3.jpg -------------------------------------------------------------------------------- /pdf/Assets/Pdf_Succinctly_img_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/pdf/Assets/Pdf_Succinctly_img_4.jpg -------------------------------------------------------------------------------- /pdf/Assets/Pdf_Succinctly_img_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/pdf/Assets/Pdf_Succinctly_img_5.jpg -------------------------------------------------------------------------------- /pdf/Assets/RedactionTemplate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/pdf/Assets/RedactionTemplate.pdf -------------------------------------------------------------------------------- /pdf/Assets/Sound.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/pdf/Assets/Sound.mp3 -------------------------------------------------------------------------------- /pdf/Assets/Video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/pdf/Assets/Video.mp4 -------------------------------------------------------------------------------- /pdf/Assets/XPSToPDF.xps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/pdf/Assets/XPSToPDF.xps -------------------------------------------------------------------------------- /pdf/Assets/Xamarin_JPEG.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/pdf/Assets/Xamarin_JPEG.jpg -------------------------------------------------------------------------------- /pdf/Assets/Xamarin_PNG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/pdf/Assets/Xamarin_PNG.png -------------------------------------------------------------------------------- /pdf/Assets/arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/pdf/Assets/arial.ttf -------------------------------------------------------------------------------- /pdf/Assets/certificate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/pdf/Assets/certificate.jpg -------------------------------------------------------------------------------- /pdf/Assets/certificate.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/pdf/Assets/certificate.pfx -------------------------------------------------------------------------------- /pdf/Assets/credit_card_statement.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/pdf/Assets/credit_card_statement.pdf -------------------------------------------------------------------------------- /pdf/Assets/digital_signature_template.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/pdf/Assets/digital_signature_template.pdf -------------------------------------------------------------------------------- /pdf/Assets/export_template.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/pdf/Assets/export_template.pdf -------------------------------------------------------------------------------- /pdf/Assets/form_template.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/pdf/Assets/form_template.pdf -------------------------------------------------------------------------------- /pdf/Assets/image.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/pdf/Assets/image.tiff -------------------------------------------------------------------------------- /pdf/Assets/import_data.fdf: -------------------------------------------------------------------------------- 1 | %FDF-1.2 2 | %âãÏÓ 3 | 1 0 obj 4 | <><><><><><>]/ID[]/UF()>>/Type/Catalog>> 5 | endobj 6 | trailer 7 | <> 8 | %%EOF 9 | -------------------------------------------------------------------------------- /pdf/Assets/import_data.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 05/01/1992 4 | John 5 | John.simonsbistro@gmail.com 6 | Male 7 | Georgia 8 | On 9 | -------------------------------------------------------------------------------- /pdf/Assets/pdf_succinctly.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/pdf/Assets/pdf_succinctly.pdf -------------------------------------------------------------------------------- /pdf/Assets/pdf_succinctly_page1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/pdf/Assets/pdf_succinctly_page1.jpg -------------------------------------------------------------------------------- /pdf/Assets/pdf_succinctly_page2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/pdf/Assets/pdf_succinctly_page2.jpg -------------------------------------------------------------------------------- /pdf/Assets/pdf_succinctly_page3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/pdf/Assets/pdf_succinctly_page3.jpg -------------------------------------------------------------------------------- /pdf/Assets/pdf_succinctly_page4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/pdf/Assets/pdf_succinctly_page4.jpg -------------------------------------------------------------------------------- /pdf/Assets/pdf_succinctly_page5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/pdf/Assets/pdf_succinctly_page5.jpg -------------------------------------------------------------------------------- /pdf/Assets/pdf_succinctly_page6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/pdf/Assets/pdf_succinctly_page6.jpg -------------------------------------------------------------------------------- /pdf/Assets/richmedia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/pdf/Assets/richmedia.jpg -------------------------------------------------------------------------------- /pdf/Assets/richmedia_sound.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/pdf/Assets/richmedia_sound.jpg -------------------------------------------------------------------------------- /pdf/Assets/signature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/pdf/Assets/signature.png -------------------------------------------------------------------------------- /pdf/Images/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/pdf/Images/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /pdf/Images/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/pdf/Images/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /pdf/Images/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/pdf/Images/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /pdf/Images/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/pdf/Images/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /pdf/Images/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/pdf/Images/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /pdf/Images/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/pdf/Images/StoreLogo.png -------------------------------------------------------------------------------- /pdf/Images/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/pdf/Images/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /pdf/MainWindow.xaml: -------------------------------------------------------------------------------- 1 |  9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /pdf/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "Syncfusion.PdfDemos.WinUI": { 4 | "commandName": "MsixPackage" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /presentation/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/presentation/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /presentation/Assets/Presentation/About.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/presentation/Assets/Presentation/About.png -------------------------------------------------------------------------------- /presentation/Assets/Presentation/CycleLogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/presentation/Assets/Presentation/CycleLogo.jpg -------------------------------------------------------------------------------- /presentation/Assets/Presentation/EmbeddedOleObject.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/presentation/Assets/Presentation/EmbeddedOleObject.pptx -------------------------------------------------------------------------------- /presentation/Assets/Presentation/FindAndHighlightInput.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/presentation/Assets/Presentation/FindAndHighlightInput.pptx -------------------------------------------------------------------------------- /presentation/Assets/Presentation/HeaderFooter.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/presentation/Assets/Presentation/HeaderFooter.pptx -------------------------------------------------------------------------------- /presentation/Assets/Presentation/HelloWorld.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/presentation/Assets/Presentation/HelloWorld.pptx -------------------------------------------------------------------------------- /presentation/Assets/Presentation/Images.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/presentation/Assets/Presentation/Images.pptx -------------------------------------------------------------------------------- /presentation/Assets/Presentation/Input Template.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/presentation/Assets/Presentation/Input Template.pptx -------------------------------------------------------------------------------- /presentation/Assets/Presentation/OlePicture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/presentation/Assets/Presentation/OlePicture.png -------------------------------------------------------------------------------- /presentation/Assets/Presentation/OleTemplate.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/presentation/Assets/Presentation/OleTemplate.docx -------------------------------------------------------------------------------- /presentation/Assets/Presentation/Slides.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/presentation/Assets/Presentation/Slides.pptx -------------------------------------------------------------------------------- /presentation/Assets/Presentation/SyncfusionPresentation.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/presentation/Assets/Presentation/SyncfusionPresentation.pptx -------------------------------------------------------------------------------- /presentation/Assets/Presentation/Template.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/presentation/Assets/Presentation/Template.pptx -------------------------------------------------------------------------------- /presentation/Assets/Presentation/tablet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/presentation/Assets/Presentation/tablet.jpg -------------------------------------------------------------------------------- /presentation/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/presentation/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /presentation/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/presentation/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /presentation/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/presentation/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /presentation/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/presentation/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /presentation/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/presentation/Assets/StoreLogo.png -------------------------------------------------------------------------------- /presentation/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/presentation/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /presentation/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "Syncfusion.PresentationDemos.WinUI": { 4 | "commandName": "MsixPackage" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /presentation/syncfusion.presentationdemos.winui_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/presentation/syncfusion.presentationdemos.winui_TemporaryKey.pfx -------------------------------------------------------------------------------- /radialgauge/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/radialgauge/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /radialgauge/Assets/RadialGauge/AxisBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/radialgauge/Assets/RadialGauge/AxisBackground.png -------------------------------------------------------------------------------- /radialgauge/Assets/RadialGauge/CustomLabels.cs.txt: -------------------------------------------------------------------------------- 1 | private void RadialAxis_LabelPrepared(object sender, LabelPreparedEventArgs e) 2 | { 3 | if (e.LabelText == "80" || e.LabelText == "0") 4 | { 5 | e.LabelText = "N"; 6 | } 7 | ... 8 | else if (e.LabelText == "70") 9 | { 10 | e.LabelText = "NW"; 11 | } 12 | } -------------------------------------------------------------------------------- /radialgauge/Assets/RadialGauge/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/radialgauge/Assets/RadialGauge/ball.png -------------------------------------------------------------------------------- /radialgauge/Assets/RadialGauge/shotput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/radialgauge/Assets/RadialGauge/shotput.png -------------------------------------------------------------------------------- /radialgauge/Assets/RadialGauge/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/radialgauge/Assets/RadialGauge/sun.png -------------------------------------------------------------------------------- /radialgauge/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/radialgauge/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /radialgauge/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/radialgauge/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /radialgauge/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/radialgauge/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /radialgauge/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/radialgauge/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /radialgauge/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/radialgauge/Assets/StoreLogo.png -------------------------------------------------------------------------------- /radialgauge/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/radialgauge/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /radialgauge/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "Syncfusion.RadialGaugeDemos.WinUI": { 4 | "commandName": "MsixPackage" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /radialgauge/syncfusion.radialgaugedemos.winui_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/radialgauge/syncfusion.radialgaugedemos.winui_TemporaryKey.pfx -------------------------------------------------------------------------------- /ribbon/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/ribbon/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /ribbon/Assets/Ribbon/Employees/Employee1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/ribbon/Assets/Ribbon/Employees/Employee1.png -------------------------------------------------------------------------------- /ribbon/Assets/Ribbon/Employees/Employee10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/ribbon/Assets/Ribbon/Employees/Employee10.png -------------------------------------------------------------------------------- /ribbon/Assets/Ribbon/Employees/Employee2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/ribbon/Assets/Ribbon/Employees/Employee2.png -------------------------------------------------------------------------------- /ribbon/Assets/Ribbon/Employees/Employee3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/ribbon/Assets/Ribbon/Employees/Employee3.png -------------------------------------------------------------------------------- /ribbon/Assets/Ribbon/Employees/Employee4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/ribbon/Assets/Ribbon/Employees/Employee4.png -------------------------------------------------------------------------------- /ribbon/Assets/Ribbon/Employees/Employee5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/ribbon/Assets/Ribbon/Employees/Employee5.png -------------------------------------------------------------------------------- /ribbon/Assets/Ribbon/Employees/Employee6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/ribbon/Assets/Ribbon/Employees/Employee6.png -------------------------------------------------------------------------------- /ribbon/Assets/Ribbon/Employees/Employee7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/ribbon/Assets/Ribbon/Employees/Employee7.png -------------------------------------------------------------------------------- /ribbon/Assets/Ribbon/Employees/Employee8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/ribbon/Assets/Ribbon/Employees/Employee8.png -------------------------------------------------------------------------------- /ribbon/Assets/Ribbon/Employees/Employee9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/ribbon/Assets/Ribbon/Employees/Employee9.png -------------------------------------------------------------------------------- /ribbon/Assets/Ribbon/RibbonCompactCode.txt: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | ... 11 | 12 | -------------------------------------------------------------------------------- /ribbon/Assets/Ribbon/Ribbongallerypreview_xaml.txt: -------------------------------------------------------------------------------- 1 | 8 | .... 9 | 10 | -------------------------------------------------------------------------------- /ribbon/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/ribbon/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /ribbon/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/ribbon/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /ribbon/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/ribbon/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /ribbon/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/ribbon/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /ribbon/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/ribbon/Assets/StoreLogo.png -------------------------------------------------------------------------------- /ribbon/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/ribbon/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /ribbon/MainWindow.xaml: -------------------------------------------------------------------------------- 1 |  9 | 10 | 11 | -------------------------------------------------------------------------------- /ribbon/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "Syncfusion.RibbonDemos.WinUI": { 4 | "commandName": "MsixPackage" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /ribbon/syncfusion.samplebrowser.winui_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/ribbon/syncfusion.samplebrowser.winui_TemporaryKey.pfx -------------------------------------------------------------------------------- /scheduler/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/scheduler/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /scheduler/Assets/Scheduler/People_Circle0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/scheduler/Assets/Scheduler/People_Circle0.png -------------------------------------------------------------------------------- /scheduler/Assets/Scheduler/People_Circle1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/scheduler/Assets/Scheduler/People_Circle1.png -------------------------------------------------------------------------------- /scheduler/Assets/Scheduler/People_Circle10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/scheduler/Assets/Scheduler/People_Circle10.png -------------------------------------------------------------------------------- /scheduler/Assets/Scheduler/People_Circle11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/scheduler/Assets/Scheduler/People_Circle11.png -------------------------------------------------------------------------------- /scheduler/Assets/Scheduler/People_Circle12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/scheduler/Assets/Scheduler/People_Circle12.png -------------------------------------------------------------------------------- /scheduler/Assets/Scheduler/People_Circle2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/scheduler/Assets/Scheduler/People_Circle2.png -------------------------------------------------------------------------------- /scheduler/Assets/Scheduler/People_Circle3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/scheduler/Assets/Scheduler/People_Circle3.png -------------------------------------------------------------------------------- /scheduler/Assets/Scheduler/People_Circle4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/scheduler/Assets/Scheduler/People_Circle4.png -------------------------------------------------------------------------------- /scheduler/Assets/Scheduler/People_Circle5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/scheduler/Assets/Scheduler/People_Circle5.png -------------------------------------------------------------------------------- /scheduler/Assets/Scheduler/People_Circle6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/scheduler/Assets/Scheduler/People_Circle6.png -------------------------------------------------------------------------------- /scheduler/Assets/Scheduler/People_Circle7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/scheduler/Assets/Scheduler/People_Circle7.png -------------------------------------------------------------------------------- /scheduler/Assets/Scheduler/People_Circle8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/scheduler/Assets/Scheduler/People_Circle8.png -------------------------------------------------------------------------------- /scheduler/Assets/Scheduler/People_Circle9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/scheduler/Assets/Scheduler/People_Circle9.png -------------------------------------------------------------------------------- /scheduler/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/scheduler/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /scheduler/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/scheduler/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /scheduler/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/scheduler/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /scheduler/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/scheduler/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /scheduler/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/scheduler/Assets/StoreLogo.png -------------------------------------------------------------------------------- /scheduler/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/scheduler/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /scheduler/Images/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/scheduler/Images/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /scheduler/Images/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/scheduler/Images/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /scheduler/Images/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/scheduler/Images/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /scheduler/Images/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/scheduler/Images/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /scheduler/Images/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/scheduler/Images/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /scheduler/Images/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/scheduler/Images/StoreLogo.png -------------------------------------------------------------------------------- /scheduler/Images/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/scheduler/Images/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /scheduler/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "Syncfusion.SchedulerDemos.WinUI": { 4 | "commandName": "MsixPackage" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /scheduler/syncfusion.schedulerdemos.winui_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/scheduler/syncfusion.schedulerdemos.winui_TemporaryKey.pfx -------------------------------------------------------------------------------- /shadow/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/shadow/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /shadow/Assets/Shadow/Ellipse_Shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/shadow/Assets/Shadow/Ellipse_Shadow.png -------------------------------------------------------------------------------- /shadow/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/shadow/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /shadow/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/shadow/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /shadow/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/shadow/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /shadow/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/shadow/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /shadow/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/shadow/Assets/StoreLogo.png -------------------------------------------------------------------------------- /shadow/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/shadow/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /shadow/MainWindow.xaml: -------------------------------------------------------------------------------- 1 |  8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /shadow/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "Syncfusion.ShadowDemos.WinUI": { 4 | "commandName": "MsixPackage" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /shimmer/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/shimmer/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /shimmer/Assets/Shimmer/Feed_Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/shimmer/Assets/Shimmer/Feed_Image.png -------------------------------------------------------------------------------- /shimmer/Assets/Shimmer/gettingstarted_xaml.txt: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /shimmer/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/shimmer/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /shimmer/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/shimmer/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /shimmer/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/shimmer/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /shimmer/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/shimmer/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /shimmer/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/shimmer/Assets/StoreLogo.png -------------------------------------------------------------------------------- /shimmer/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/shimmer/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /shimmer/MainWindow.xaml: -------------------------------------------------------------------------------- 1 |  8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /shimmer/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "Syncfusion.ShimmerDemos.WinUI": { 4 | "commandName": "MsixPackage" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /sliders/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/sliders/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /sliders/Assets/Slider/SLogarithmicRange.xaml.txt: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /sliders/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/sliders/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /sliders/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/sliders/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /sliders/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/sliders/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /sliders/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/sliders/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /sliders/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/sliders/Assets/StoreLogo.png -------------------------------------------------------------------------------- /sliders/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/sliders/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /sliders/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "Syncfusion.SliderDemos.WinUI": { 4 | "commandName": "MsixPackage" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /sliders/syncfusion.sliderdemos.winui_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/sliders/syncfusion.sliderdemos.winui_TemporaryKey.pfx -------------------------------------------------------------------------------- /treegrid/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/treegrid/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /treegrid/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/treegrid/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /treegrid/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/treegrid/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /treegrid/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/treegrid/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /treegrid/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/treegrid/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /treegrid/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/treegrid/Assets/StoreLogo.png -------------------------------------------------------------------------------- /treegrid/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/treegrid/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /treegrid/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "Syncfusion.TreeGridDemos.WinUI": { 4 | "commandName": "MsixPackage" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /treegrid/syncfusion.treegriddemos.winui_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/treegrid/syncfusion.treegriddemos.winui_TemporaryKey.pfx -------------------------------------------------------------------------------- /treeview/Assets/Tiles/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/treeview/Assets/Tiles/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /treeview/Assets/Tiles/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/treeview/Assets/Tiles/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /treeview/Assets/Tiles/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/treeview/Assets/Tiles/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /treeview/Assets/Tiles/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/treeview/Assets/Tiles/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /treeview/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "Syncfusion.TreeViewDemos.WinUI": { 4 | "commandName": "MsixPackage" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /treeview/syncfusion.treeviewdemos.winui_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/treeview/syncfusion.treeviewdemos.winui_TemporaryKey.pfx -------------------------------------------------------------------------------- /xlsio/Assets/Tiles/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/Tiles/LargeTile.scale-100.png -------------------------------------------------------------------------------- /xlsio/Assets/Tiles/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/Tiles/LargeTile.scale-200.png -------------------------------------------------------------------------------- /xlsio/Assets/Tiles/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/Tiles/LargeTile.scale-400.png -------------------------------------------------------------------------------- /xlsio/Assets/Tiles/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/Tiles/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /xlsio/Assets/Tiles/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/Tiles/SmallTile.scale-100.png -------------------------------------------------------------------------------- /xlsio/Assets/Tiles/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/Tiles/SmallTile.scale-200.png -------------------------------------------------------------------------------- /xlsio/Assets/Tiles/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/Tiles/SmallTile.scale-400.png -------------------------------------------------------------------------------- /xlsio/Assets/Tiles/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/Tiles/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /xlsio/Assets/Tiles/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/Tiles/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /xlsio/Assets/Tiles/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/Tiles/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /xlsio/Assets/Tiles/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/Tiles/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /xlsio/Assets/Tiles/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/Tiles/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /xlsio/Assets/Tiles/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/Tiles/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /xlsio/Assets/Tiles/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/Tiles/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /xlsio/Assets/Tiles/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/Tiles/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /xlsio/Assets/Tiles/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/Tiles/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /xlsio/Assets/Tiles/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/Tiles/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /xlsio/Assets/Tiles/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/Tiles/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /xlsio/Assets/Tiles/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/Tiles/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /xlsio/Assets/Tiles/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/Tiles/StoreLogo.png -------------------------------------------------------------------------------- /xlsio/Assets/Tiles/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/Tiles/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /xlsio/Assets/Tiles/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/Tiles/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /xlsio/Assets/Tiles/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/Tiles/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /xlsio/Assets/Tiles/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/Tiles/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /xlsio/Assets/Tiles/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/Tiles/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /xlsio/Assets/Tiles/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/Tiles/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /xlsio/Assets/Tiles/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/Tiles/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /xlsio/Assets/Tiles/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/Tiles/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/AdvancedFilterData.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/AdvancedFilterData.xlsx -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/BoxAndWhiskerTemplate.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/BoxAndWhiskerTemplate.xlsx -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/BudgetPlanner.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/BudgetPlanner.xls -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/CFTemplate.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/CFTemplate.xlsx -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/CalendarTemplate.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/CalendarTemplate.xlsx -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/CallCenterTemplate.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/CallCenterTemplate.xlsx -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/CommentsTemplate.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/CommentsTemplate.xlsx -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/CreateMacroTemplate.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/CreateMacroTemplate.xlsx -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/EMPID1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/EMPID1.png -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/EditMacroTemplate.xltm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/EditMacroTemplate.xltm -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/EmbeddedChart.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/EmbeddedChart.xls -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/EmbeddedChart.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/EmbeddedChart.xlsx -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/Encrypt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/Encrypt.xlsx -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/EncryptedSpreadsheet.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/EncryptedSpreadsheet.xlsx -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/ExcelToJSON.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/ExcelToJSON.xlsx -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/ExcelToODS.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/ExcelToODS.xlsx -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/ExcelToPDFUA.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/ExcelToPDFUA.xlsx -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/ExcelTopdfwithChart.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/ExcelTopdfwithChart.xlsx -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/ExpenseReport.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/ExpenseReport.xlsx -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/ExportData.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/ExportData.xlsx -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/External_Input.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/External_Input.xlsx -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/FaxOrderForm.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/FaxOrderForm.doc -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/FaxOrderForm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/FaxOrderForm.pdf -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/FilterData.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/FilterData.xlsx -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/FilterData_Color.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/FilterData_Color.xlsx -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/FindAndExtract.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/FindAndExtract.xls -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/Fonts/bahnschrift.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/Fonts/bahnschrift.ttf -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/Fonts/georgiab.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/Fonts/georgiab.ttf -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/FormulaTemplate.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/FormulaTemplate.xls -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/FunnelChartTemplate.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/FunnelChartTemplate.xlsx -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/GroupShapes.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/GroupShapes.xlsx -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/IconFilterData.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/IconFilterData.xlsx -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/Input.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/Input.xls -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/InvoiceTemplate.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/InvoiceTemplate.xlsx -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/LockedWorksheet.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/LockedWorksheet.xls -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/MacroTemplate.xltm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/MacroTemplate.xltm -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/NorthwindDataTemplate.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/NorthwindDataTemplate.xls -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/NorthwindTemplate.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/NorthwindTemplate.xls -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/PivotTable.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/PivotTable.xlsx -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/PivotTableLayout.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/PivotTableLayout.xlsx -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/ProtectedWorkbook.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/ProtectedWorkbook.xls -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/RangeManipulation.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/RangeManipulation.xls -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/ReplaceOptions.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/ReplaceOptions.xlsx -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/SortingData.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/SortingData.xlsx -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/SourceWorkbookTemplate.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/SourceWorkbookTemplate.xls -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/SourceWorkbookTemplate.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/SourceWorkbookTemplate.xlsx -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/Sparkline.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/Sparkline.xlsx -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/SunburstTemplate.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/SunburstTemplate.xlsx -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/TableSlicer.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/TableSlicer.xlsx -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/TemplateMarker.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/TemplateMarker.xlsx -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/Template_Marker_Images/Man1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/Template_Marker_Images/Man1.jpg -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/Template_Marker_Images/Man10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/Template_Marker_Images/Man10.png -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/Template_Marker_Images/Man11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/Template_Marker_Images/Man11.jpg -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/Template_Marker_Images/Man12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/Template_Marker_Images/Man12.jpg -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/Template_Marker_Images/Man13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/Template_Marker_Images/Man13.jpg -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/Template_Marker_Images/Man14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/Template_Marker_Images/Man14.jpg -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/Template_Marker_Images/Man15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/Template_Marker_Images/Man15.jpg -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/Template_Marker_Images/Man16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/Template_Marker_Images/Man16.jpg -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/Template_Marker_Images/Man17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/Template_Marker_Images/Man17.jpg -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/Template_Marker_Images/Man18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/Template_Marker_Images/Man18.jpg -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/Template_Marker_Images/Man2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/Template_Marker_Images/Man2.png -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/Template_Marker_Images/Man3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/Template_Marker_Images/Man3.jpg -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/Template_Marker_Images/Man4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/Template_Marker_Images/Man4.png -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/Template_Marker_Images/Man5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/Template_Marker_Images/Man5.jpg -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/Template_Marker_Images/Man6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/Template_Marker_Images/Man6.png -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/Template_Marker_Images/Man7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/Template_Marker_Images/Man7.jpg -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/Template_Marker_Images/Man8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/Template_Marker_Images/Man8.png -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/Template_Marker_Images/Man9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/Template_Marker_Images/Man9.jpg -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/Template_Marker_Images/Woman1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/Template_Marker_Images/Woman1.jpg -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/Template_Marker_Images/Woman10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/Template_Marker_Images/Woman10.jpg -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/Template_Marker_Images/Woman11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/Template_Marker_Images/Woman11.jpg -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/Template_Marker_Images/Woman12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/Template_Marker_Images/Woman12.jpg -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/Template_Marker_Images/Woman13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/Template_Marker_Images/Woman13.jpg -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/Template_Marker_Images/Woman14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/Template_Marker_Images/Woman14.jpg -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/Template_Marker_Images/Woman2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/Template_Marker_Images/Woman2.png -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/Template_Marker_Images/Woman3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/Template_Marker_Images/Woman3.jpg -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/Template_Marker_Images/Woman4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/Template_Marker_Images/Woman4.png -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/Template_Marker_Images/Woman5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/Template_Marker_Images/Woman5.jpg -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/Template_Marker_Images/Woman6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/Template_Marker_Images/Woman6.png -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/Template_Marker_Images/Woman7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/Template_Marker_Images/Woman7.jpg -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/Template_Marker_Images/Woman8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/Template_Marker_Images/Woman8.jpg -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/Template_Marker_Images/Woman9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/Template_Marker_Images/Woman9.jpg -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/TimelogTemplate.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/TimelogTemplate.xls -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/TreemapTemplate.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/TreemapTemplate.xlsx -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/WhatIfAnalysisTemplate.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/WhatIfAnalysisTemplate.xlsx -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/WorkSheetToImage.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/WorkSheetToImage.xlsx -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/contact_sales.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/contact_sales.gif -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/header.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/header.gif -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/image/CF_IS_GreenCheckSymbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/image/CF_IS_GreenCheckSymbol.png -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/image/CF_IS_GreenUpArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/image/CF_IS_GreenUpArrow.png -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/image/CF_IS_RedCrossSymbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/image/CF_IS_RedCrossSymbol.png -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/image/CF_IS_RedDownArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/image/CF_IS_RedDownArrow.png -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/image/CF_IS_SignalWithFourFillBars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/image/CF_IS_SignalWithFourFillBars.png -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/image/CF_IS_SignalWithOneFillBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/image/CF_IS_SignalWithOneFillBar.png -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/image/CF_IS_SignalWithThreeFillBars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/image/CF_IS_SignalWithThreeFillBars.png -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/image/CF_IS_SignalWithTwoFillBars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/image/CF_IS_SignalWithTwoFillBars.png -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/image/CF_IS_YellowDownInclineArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/image/CF_IS_YellowDownInclineArrow.png -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/image/CF_IS_YellowExclamationSymbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/image/CF_IS_YellowExclamationSymbol.png -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/image/CF_IS_YellowSideArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/image/CF_IS_YellowSideArrow.png -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/image/CF_IS_YellowUpInclineArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/image/CF_IS_YellowUpInclineArrow.png -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/image/NoIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/image/NoIcon.png -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/invoice.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/invoice.jpeg -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/logo.jpg -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/monthly_sales.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/monthly_sales.xls -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/pdfIcon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/pdfIcon.jpg -------------------------------------------------------------------------------- /xlsio/Assets/XlsIO/wordIcon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syncfusion/winui-demos/7546b4724bad89fc8351c777ef5e5670956f9c61/xlsio/Assets/XlsIO/wordIcon.jpg -------------------------------------------------------------------------------- /xlsio/MainWindow.xaml: -------------------------------------------------------------------------------- 1 |  9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /xlsio/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "Syncfusion.XlsIODemos.WinUI": { 4 | "commandName": "MsixPackage" 5 | } 6 | } 7 | } --------------------------------------------------------------------------------