├── .gitignore ├── Images ├── Telerik-UI-For-MAUI-ControlsSamples-Image.png ├── Telerik-UI-For-MAUI-CryptoTracker-Image.png └── Telerik-UI-For-MAUI-SDKBrowser-Image.png ├── LICENSE.md ├── README.md └── Samples ├── AppUtils ├── AppUtils.csproj └── Services │ └── Testing │ ├── ITestingService.cs │ ├── TestCommandEventArgs.cs │ ├── TestingExtensions.cs │ └── TestingService.cs ├── ControlsSamples ├── App.xaml ├── App.xaml.cs ├── Behaviors │ ├── AndroidResizeSoftInputModeBehavior.cs │ └── PickImageBehavior.cs ├── Common │ ├── AppAppearanceMode.cs │ ├── Configuration.cs │ ├── Control.cs │ ├── DemoApp.cs │ ├── Example.cs │ ├── HighlightedControl.cs │ ├── HyperlinkLabel.cs │ ├── MauiHighlight.cs │ ├── StatusType.cs │ └── TelerikControlsIcons.cs ├── ControlsSamples.csproj ├── ControlsSamples.sln ├── Converters │ ├── ColorNameToColorConverter.cs │ ├── DebugConverter.cs │ ├── EnumToStringConverter.cs │ ├── KeyValueConverter.cs │ ├── ModelToConfigurationAreaConverter.cs │ ├── ModelToViewConverter.cs │ ├── NameToEasingConverter.cs │ ├── NullOrEmptyToValueConverter.cs │ ├── RandomItemConverter.cs │ ├── ScreenWidthToItemWidthConverter.cs │ ├── StatusTagToColorConverter.cs │ ├── StatusTagToStringConverter.cs │ ├── StatusTagToTemplateConverter.cs │ ├── StringToFontImageSourceConverter.cs │ └── ValueTypeConverter.cs ├── ExampleUtilities │ ├── CardItem.cs │ └── DataGenerator.cs ├── Examples │ ├── AIPromptControl │ │ ├── FirstLookExample │ │ │ ├── AIService.cs │ │ │ ├── AiItem.cs │ │ │ ├── FirstLookView.xaml │ │ │ ├── FirstLookView.xaml.cs │ │ │ ├── FirstLookViewModel.cs │ │ │ ├── Format.cs │ │ │ ├── Language.cs │ │ │ └── SuggestionId.cs │ │ └── ThemingExample │ │ │ ├── ThemingView.xaml │ │ │ ├── ThemingView.xaml.cs │ │ │ └── ThemingViewModel.cs │ ├── AccordionControl │ │ ├── ConfigurationExample │ │ │ ├── ConfigurationArea.xaml │ │ │ ├── ConfigurationArea.xaml.cs │ │ │ ├── ConfigurationView.xaml │ │ │ ├── ConfigurationView.xaml.cs │ │ │ └── ConfigurationViewModel.cs │ │ ├── CustomizationExample │ │ │ ├── CustomizationView.xaml │ │ │ ├── CustomizationView.xaml.cs │ │ │ └── CustomizationViewModel.cs │ │ ├── FirstLookExample │ │ │ ├── FirstLookView.xaml │ │ │ └── FirstLookView.xaml.cs │ │ └── ThemingExample │ │ │ ├── ThemingView.xaml │ │ │ └── ThemingView.xaml.cs │ ├── AutoCompleteControl │ │ ├── ConfigurationExample │ │ │ ├── City.cs │ │ │ ├── ConfigurationView.xaml │ │ │ ├── ConfigurationView.xaml.cs │ │ │ └── ConfigurationViewModel.cs │ │ ├── CustomizationExample │ │ │ ├── CustomizationView.xaml │ │ │ ├── CustomizationView.xaml.cs │ │ │ ├── CustomizationViewModel.cs │ │ │ ├── JobTitle.cs │ │ │ └── JobType.cs │ │ ├── FirstLookExample │ │ │ ├── FirstLookView.xaml │ │ │ ├── FirstLookView.xaml.cs │ │ │ └── FirstLookViewModel.cs │ │ └── ThemingExample │ │ │ ├── ThemingView.xaml │ │ │ └── ThemingView.xaml.cs │ ├── BadgeViewControl │ │ ├── ConfigurationExample │ │ │ ├── ConfigurationView.xaml │ │ │ ├── ConfigurationView.xaml.cs │ │ │ └── ConfigurationViewModel.cs │ │ └── FirstLookExample │ │ │ ├── FirstLookView.xaml │ │ │ ├── FirstLookView.xaml.cs │ │ │ ├── FirstLookViewModel.cs │ │ │ └── User.cs │ ├── BarcodeControl │ │ ├── Barcode1DGalleryExample │ │ │ ├── Barcode1DGalleryView.xaml │ │ │ └── Barcode1DGalleryView.xaml.cs │ │ ├── BoardingPassExample │ │ │ ├── BoardingPassView.xaml │ │ │ └── BoardingPassView.xaml.cs │ │ ├── DataMatrixExample │ │ │ ├── DataMatrixView.xaml │ │ │ ├── DataMatrixView.xaml.cs │ │ │ └── DataMatrixViewModel.cs │ │ ├── SpecialOfferExample │ │ │ ├── SpecialOfferView.xaml │ │ │ └── SpecialOfferView.xaml.cs │ │ └── SwissQRCodeExample │ │ │ ├── Item.cs │ │ │ ├── SwissQRCodeView.xaml │ │ │ ├── SwissQRCodeView.xaml.cs │ │ │ └── SwissQRCodeViewModel.cs │ ├── BorderControl │ │ ├── ConfigurationExample │ │ │ ├── ConfigurationView.xaml │ │ │ ├── ConfigurationView.xaml.cs │ │ │ └── ConfigurationViewModel.cs │ │ └── FirstLookExample │ │ │ ├── FirstLookView.xaml │ │ │ ├── FirstLookView.xaml.cs │ │ │ └── FirstLookViewModel.cs │ ├── BusyIndicatorControl │ │ ├── FirstLookExample │ │ │ ├── FirstLookItemViewModel.cs │ │ │ ├── FirstLookView.xaml │ │ │ ├── FirstLookView.xaml.cs │ │ │ └── FirstLookViewModel.cs │ │ └── ThemingExample │ │ │ ├── ThemingView.xaml │ │ │ └── ThemingView.xaml.cs │ ├── ButtonControl │ │ ├── CustomizationExample │ │ │ ├── CustomizationView.xaml │ │ │ ├── CustomizationView.xaml.cs │ │ │ └── CustomizationViewModel.cs │ │ ├── FirstLookExample │ │ │ ├── FirstLookView.xaml │ │ │ └── FirstLookView.xaml.cs │ │ └── ThemingExample │ │ │ ├── ThemingView.xaml │ │ │ └── ThemingView.xaml.cs │ ├── CalendarControl │ │ ├── BlackoutDatesExample │ │ │ ├── BlackoutDatesView.xaml │ │ │ └── BlackoutDatesView.xaml.cs │ │ ├── Common │ │ │ └── Reminder.cs │ │ ├── ConfigurationExample │ │ │ ├── ConfigurationView.xaml │ │ │ ├── ConfigurationView.xaml.cs │ │ │ └── ConfigurationViewModel.cs │ │ ├── CustomizationExample │ │ │ ├── ColorWithAlphaConverter.cs │ │ │ ├── CustomizationView.xaml │ │ │ ├── CustomizationView.xaml.cs │ │ │ ├── CustomizationViewModel.cs │ │ │ ├── ReminderStyleSelector.cs │ │ │ └── ReminderTemplateSelector.cs │ │ ├── DisplayModeExample │ │ │ ├── DisplayModeView.xaml │ │ │ ├── DisplayModeView.xaml.cs │ │ │ └── DisplayModeViewModel.cs │ │ ├── FirstLookExample │ │ │ ├── FirstLookView.xaml │ │ │ ├── FirstLookView.xaml.cs │ │ │ └── FirstLookViewModel.cs │ │ ├── GlobalizationExample │ │ │ ├── CultureData.cs │ │ │ ├── GlobalizationView.xaml │ │ │ ├── GlobalizationView.xaml.cs │ │ │ └── GlobalizationViewModel.cs │ │ ├── SelectionExample │ │ │ ├── SelectionView.xaml │ │ │ ├── SelectionView.xaml.cs │ │ │ └── SelectionViewModel.cs │ │ └── ThemingExample │ │ │ ├── ThemingView.xaml │ │ │ └── ThemingView.xaml.cs │ ├── ChartControl │ │ ├── AreaSeriesExample │ │ │ ├── AreaSeriesView.xaml │ │ │ ├── AreaSeriesView.xaml.cs │ │ │ └── AreaSeriesViewModel.cs │ │ ├── BarSeriesExample │ │ │ ├── BarSeriesView.xaml │ │ │ ├── BarSeriesView.xaml.cs │ │ │ └── BarSeriesViewModel.cs │ │ ├── DataItem.cs │ │ ├── FinancialDataItem.cs │ │ ├── FinancialIndicatorsExample │ │ │ ├── FinancialIndicatorsView.xaml │ │ │ ├── FinancialIndicatorsView.xaml.cs │ │ │ ├── FinancialIndicatorsViewModel.cs │ │ │ ├── Indicators.cs │ │ │ └── Trendlines.cs │ │ ├── FinancialSeriesExample │ │ │ ├── AppleStockPrices.json │ │ │ ├── FinancialSeriesView.xaml │ │ │ ├── FinancialSeriesView.xaml.cs │ │ │ └── FinancialSeriesViewModel.cs │ │ ├── FinancialSeriesGalleryItemViewModel.cs │ │ ├── LineSeriesExample │ │ │ ├── LineSeriesView.xaml │ │ │ ├── LineSeriesView.xaml.cs │ │ │ └── LineSeriesViewModel.cs │ │ ├── NullValuesExample │ │ │ ├── NullValuesView.xaml │ │ │ ├── NullValuesView.xaml.cs │ │ │ └── NullValuesViewModel.cs │ │ ├── PieDonutSeriesExample │ │ │ ├── PieDonutSeriesView.xaml │ │ │ ├── PieDonutSeriesView.xaml.cs │ │ │ └── PieDonutSeriesViewModel.cs │ │ ├── ScatterSeriesExample │ │ │ ├── ScatterSeriesView.xaml │ │ │ ├── ScatterSeriesView.xaml.cs │ │ │ └── ScatterSeriesViewModel.cs │ │ └── SeriesGalleryItemViewModel.cs │ ├── ChatControl │ │ ├── ChatRoomExample │ │ │ ├── ChatRoomView.xaml │ │ │ ├── ChatRoomView.xaml.cs │ │ │ ├── Converters │ │ │ │ ├── BackgroundColorConverter.cs │ │ │ │ ├── ChatroomMessageConverter.cs │ │ │ │ ├── ChatroomParticipantConverter.cs │ │ │ │ └── EmojiConverter.cs │ │ │ ├── Misc │ │ │ │ ├── AuthorsMap.cs │ │ │ │ ├── ChatroomUtils.cs │ │ │ │ └── ParticipantLines.cs │ │ │ ├── Models │ │ │ │ ├── ChatroomMessage.cs │ │ │ │ ├── ChatroomParticipant.cs │ │ │ │ ├── ChatroomTextMessage.cs │ │ │ │ └── ChatroomTimebreak.cs │ │ │ ├── Services │ │ │ │ ├── ChatroomService.cs │ │ │ │ └── ChatroomSignalEventArgs.cs │ │ │ └── ViewModels │ │ │ │ └── ChatroomViewModel.cs │ │ ├── ConfigurationExample │ │ │ ├── ConfigurationArea.xaml │ │ │ ├── ConfigurationArea.xaml.cs │ │ │ ├── ConfigurationView.xaml │ │ │ ├── ConfigurationView.xaml.cs │ │ │ ├── ConfigurationViewModel.cs │ │ │ ├── MessageRenderMode.cs │ │ │ └── MessageType.cs │ │ ├── ThemingExample │ │ │ ├── ThemingView.xaml │ │ │ ├── ThemingView.xaml.cs │ │ │ └── ThemingViewModel.cs │ │ └── TravelAssistanceExample │ │ │ ├── AzureChatBotService.cs │ │ │ ├── Converters │ │ │ └── ChatItemConverter.cs │ │ │ ├── CustomChatItemTemplateSelector.cs │ │ │ ├── Models │ │ │ ├── Activity.cs │ │ │ ├── ActivityRoot.cs │ │ │ ├── AdaptiveCard.cs │ │ │ ├── AdaptiveColumnSet.cs │ │ │ ├── AdaptiveContainer.cs │ │ │ ├── AdaptiveElement.cs │ │ │ ├── AdaptiveImage.cs │ │ │ ├── AdaptiveTextBlock.cs │ │ │ ├── AirlineCompany.cs │ │ │ ├── Attachment.cs │ │ │ ├── CardAction.cs │ │ │ ├── CardImage.cs │ │ │ ├── Conversation.cs │ │ │ ├── ConversationAccount.cs │ │ │ ├── FlightChatContext.cs │ │ │ ├── FlightInfo.cs │ │ │ ├── HeroCard.cs │ │ │ ├── Sender.cs │ │ │ ├── SuggestedActions.cs │ │ │ ├── Summary.cs │ │ │ └── TravelCardAction.cs │ │ │ ├── TravelAssistanceView.xaml │ │ │ ├── TravelAssistanceView.xaml.cs │ │ │ └── TravelBotViewModel.cs │ ├── CheckBoxControl │ │ ├── FirstLookExample │ │ │ ├── FirstLookView.xaml │ │ │ ├── FirstLookView.xaml.cs │ │ │ └── FirstLookViewModel.cs │ │ └── ThemingExample │ │ │ ├── ThemingView.xaml │ │ │ └── ThemingView.xaml.cs │ ├── CollectionViewControl │ │ ├── Common │ │ │ ├── MessageData.cs │ │ │ └── MessageDataProvider.cs │ │ ├── ConfigurationExample │ │ │ ├── ConfigurationArea.xaml │ │ │ ├── ConfigurationArea.xaml.cs │ │ │ ├── ConfigurationView.xaml │ │ │ ├── ConfigurationView.xaml.cs │ │ │ ├── ConfigurationViewModel.cs │ │ │ └── Data │ │ │ │ ├── Contact.cs │ │ │ │ └── ContactsProvider.cs │ │ ├── DragDropExample │ │ │ ├── DragDropView.xaml │ │ │ ├── DragDropView.xaml.cs │ │ │ ├── DragDropViewModel.cs │ │ │ └── WorkItem.cs │ │ ├── DragVisualTemplateExample │ │ │ ├── Destination.cs │ │ │ ├── DragVisualTemplateView.xaml │ │ │ ├── DragVisualTemplateView.xaml.cs │ │ │ └── DragVisualTemplateViewModel.cs │ │ ├── FirstLookExample │ │ │ ├── FirstLookView.xaml │ │ │ ├── FirstLookView.xaml.cs │ │ │ └── FirstLookViewModel.cs │ │ ├── GridLayoutExample │ │ │ ├── ConfigurationArea.xaml │ │ │ ├── ConfigurationArea.xaml.cs │ │ │ ├── GridLayoutView.xaml │ │ │ ├── GridLayoutView.xaml.cs │ │ │ ├── GridLayoutViewModel.cs │ │ │ └── RentalProperty.cs │ │ ├── GroupingExample │ │ │ ├── ConfigurationArea.xaml │ │ │ ├── ConfigurationArea.xaml.cs │ │ │ ├── GroupingView.xaml │ │ │ ├── GroupingView.xaml.cs │ │ │ └── GroupingViewModel.cs │ │ ├── HeaderFooterExample │ │ │ ├── HeaderFooterView.xaml │ │ │ ├── HeaderFooterView.xaml.cs │ │ │ ├── HeaderFooterViewModel.cs │ │ │ └── ListItem.cs │ │ ├── ItemSwipeExample │ │ │ ├── ItemSwipeView.xaml │ │ │ ├── ItemSwipeView.xaml.cs │ │ │ ├── ItemSwipeViewModel.cs │ │ │ └── MailItem.cs │ │ ├── LoadOnDemandExample │ │ │ ├── ConfigurationArea.xaml │ │ │ ├── ConfigurationArea.xaml.cs │ │ │ ├── LoadOnDemandView.xaml │ │ │ ├── LoadOnDemandView.xaml.cs │ │ │ └── LoadOnDemandViewModel.cs │ │ ├── PullToRefreshExample │ │ │ ├── PullToRefreshView.xaml │ │ │ ├── PullToRefreshView.xaml.cs │ │ │ ├── PullToRefreshViewModel.cs │ │ │ └── Recipe.cs │ │ └── ThemingExample │ │ │ ├── ThemingView.xaml │ │ │ ├── ThemingView.xaml.cs │ │ │ └── ThemingViewModel.cs │ ├── ComboBoxControl │ │ ├── ConfigurationExample │ │ │ ├── City.cs │ │ │ ├── ConfigurationView.xaml │ │ │ ├── ConfigurationView.xaml.cs │ │ │ └── ConfigurationViewModel.cs │ │ ├── FilteringExample │ │ │ ├── ComboBoxConstants.xaml │ │ │ ├── ComboBoxConstants.xaml.cs │ │ │ ├── FilteringView.xaml │ │ │ ├── FilteringView.xaml.cs │ │ │ └── FilteringViewModel.cs │ │ ├── FirstLookExample │ │ │ ├── FirstLookView.xaml │ │ │ ├── FirstLookView.xaml.cs │ │ │ └── FirstLookViewModel.cs │ │ └── ThemingExample │ │ │ ├── ThemingView.xaml │ │ │ └── ThemingView.xaml.cs │ ├── DataFormControl │ │ ├── CustomEditorsExample │ │ │ ├── CustomEditorsView.xaml │ │ │ ├── CustomEditorsView.xaml.cs │ │ │ ├── CustomEditorsViewModel.cs │ │ │ └── FeedBackFormViewModel.cs │ │ ├── CustomizationExample │ │ │ ├── AccountViewModel.cs │ │ │ ├── CustomizationView.xaml │ │ │ ├── CustomizationView.xaml.cs │ │ │ ├── CustomizationViewModel.cs │ │ │ └── GenderType.cs │ │ ├── FirstLookExample │ │ │ ├── FirstLookView.xaml │ │ │ ├── FirstLookView.xaml.cs │ │ │ ├── FirstLookViewModel.cs │ │ │ ├── ReservationType.cs │ │ │ ├── ReservationViewModel.cs │ │ │ └── SectionType.cs │ │ └── ThemingExample │ │ │ ├── BookingViewModel.cs │ │ │ ├── ThemingView.xaml │ │ │ └── ThemingView.xaml.cs │ ├── DataGridControl │ │ ├── AggregateSupportExample │ │ │ ├── AggregateSupportView.xaml │ │ │ ├── AggregateSupportView.xaml.cs │ │ │ ├── AggregateSupportViewModel.cs │ │ │ ├── ConfigurationArea.xaml │ │ │ └── ConfigurationArea.xaml.cs │ │ ├── BillionCellsExample │ │ │ ├── BillionCellsView.xaml │ │ │ ├── BillionCellsView.xaml.cs │ │ │ ├── BillionCellsViewModel.cs │ │ │ └── DataItem.cs │ │ ├── ColumnTypesExample │ │ │ ├── ColumnTypesView.xaml │ │ │ ├── ColumnTypesView.xaml.cs │ │ │ ├── ColumnTypesViewModel.cs │ │ │ ├── Flight.cs │ │ │ └── StatusFlightToBooleanConverter.cs │ │ ├── Common │ │ │ ├── Employee.cs │ │ │ ├── EmployeesDataSource.xml │ │ │ ├── Order.cs │ │ │ ├── OrdersDataSource.xml │ │ │ ├── PeopleDataSource.xml │ │ │ ├── ResourcePaths.cs │ │ │ ├── SalesPerson.cs │ │ │ └── UIState.cs │ │ ├── CustomizationExample │ │ │ ├── CustomizationView.xaml │ │ │ ├── CustomizationView.xaml.cs │ │ │ ├── CustomizationViewModel.cs │ │ │ └── GroupStyleSelector.cs │ │ ├── DataFormattingExample │ │ │ ├── DataFormattingView.xaml │ │ │ ├── DataFormattingView.xaml.cs │ │ │ ├── DataFormattingViewModel.cs │ │ │ └── Product.cs │ │ ├── EmptyTemplateExample │ │ │ ├── ConfigurationArea.xaml │ │ │ ├── ConfigurationArea.xaml.cs │ │ │ ├── EmptyTemplate.xaml │ │ │ ├── EmptyTemplate.xaml.cs │ │ │ └── EmptyTemplateViewModel.cs │ │ ├── FirstLookExample │ │ │ ├── FirstLookView.xaml │ │ │ ├── FirstLookView.xaml.cs │ │ │ └── FirstLookViewModel.cs │ │ ├── FrozenColumnsExample │ │ │ ├── ConfigurationArea.xaml │ │ │ ├── ConfigurationArea.xaml.cs │ │ │ ├── FrozenColumnsView.xaml │ │ │ ├── FrozenColumnsView.xaml.cs │ │ │ └── FrozenColumnsViewModel.cs │ │ ├── GroupingExample │ │ │ ├── ConfigurationArea.xaml │ │ │ ├── ConfigurationArea.xaml.cs │ │ │ ├── FlightDataService.cs │ │ │ ├── GroupingView.xaml │ │ │ ├── GroupingView.xaml.cs │ │ │ └── GroupingViewModel.cs │ │ ├── HeaderContentTemplateExample │ │ │ ├── Converters │ │ │ │ ├── BoolToColorConverter.cs │ │ │ │ ├── IsFrozenToTextConverter.cs │ │ │ │ ├── SortDirectionToColorConverter.cs │ │ │ │ ├── SortDirectionToOpacityConverter.cs │ │ │ │ └── SortDirectionToTextConverter.cs │ │ │ ├── HeaderContentTemplateView.xaml │ │ │ ├── HeaderContentTemplateView.xaml.cs │ │ │ └── HeaderContentTemplateViewModel.cs │ │ ├── RowDetailsExample │ │ │ ├── ConfigurationArea.xaml │ │ │ ├── ConfigurationArea.xaml.cs │ │ │ ├── RowDetailsResources.xaml │ │ │ ├── RowDetailsResources.xaml.cs │ │ │ ├── RowDetailsView.xaml │ │ │ ├── RowDetailsView.xaml.cs │ │ │ └── RowDetailsViewModel.cs │ │ ├── SearchAsYouTypeExample │ │ │ ├── ConfigurationArea.xaml │ │ │ ├── ConfigurationArea.xaml.cs │ │ │ ├── SearchAsYouTypeView.xaml │ │ │ ├── SearchAsYouTypeView.xaml.cs │ │ │ └── SearchAsYouTypeViewModel.cs │ │ ├── SelectionExample │ │ │ ├── ConfigurationArea.xaml │ │ │ ├── ConfigurationArea.xaml.cs │ │ │ ├── Flight.cs │ │ │ ├── SelectionView.xaml │ │ │ ├── SelectionView.xaml.cs │ │ │ └── SelectionViewModel.cs │ │ ├── ThemingExample │ │ │ ├── ThemingView.xaml │ │ │ ├── ThemingView.xaml.cs │ │ │ └── ThemingViewModel.cs │ │ └── VariousDataSourcesExample │ │ │ ├── ConfigurationArea.xaml │ │ │ ├── ConfigurationArea.xaml.cs │ │ │ ├── DataSourcesTypes.cs │ │ │ ├── SalesPersonDynamicObject.cs │ │ │ ├── VariousDataSourcesView.xaml │ │ │ ├── VariousDataSourcesView.xaml.cs │ │ │ └── VariousDataSourcesViewModel.cs │ ├── DataPagerControl │ │ ├── CollectionViewIntegrationExample │ │ │ ├── CollectionViewIntegrationView.xaml │ │ │ ├── CollectionViewIntegrationView.xaml.cs │ │ │ ├── CollectionViewIntegrationViewModel.cs │ │ │ └── TechnologyNews.cs │ │ ├── ConfigurationExample │ │ │ ├── ConfigurationView.xaml │ │ │ ├── ConfigurationView.xaml.cs │ │ │ └── ConfigurationViewModel.cs │ │ ├── CustomizationExample │ │ │ ├── CustomizationView.xaml │ │ │ └── CustomizationView.xaml.cs │ │ ├── FirstLookExample │ │ │ ├── FirstLookView.xaml │ │ │ ├── FirstLookView.xaml.cs │ │ │ └── FirstLookViewModel.cs │ │ └── ThemingExample │ │ │ ├── ThemingView.xaml │ │ │ └── ThemingView.xaml.cs │ ├── DatePickerControl │ │ ├── FirstLookExample │ │ │ ├── FirstLookView.xaml │ │ │ ├── FirstLookView.xaml.cs │ │ │ └── FirstLookViewModel.cs │ │ └── ThemingExample │ │ │ ├── ThemingView.xaml │ │ │ └── ThemingView.xaml.cs │ ├── DateTimePickerControl │ │ ├── FirstLookExample │ │ │ ├── FirstLookView.xaml │ │ │ ├── FirstLookView.xaml.cs │ │ │ └── FirstLookViewModel.cs │ │ └── ThemingExample │ │ │ ├── ThemingView.xaml │ │ │ └── ThemingView.xaml.cs │ ├── DockLayoutControl │ │ └── FirstLookExample │ │ │ ├── DockLayoutConfigurationView.xaml │ │ │ ├── DockLayoutConfigurationView.xaml.cs │ │ │ ├── DockLayoutConfigurationViewModel.cs │ │ │ ├── FirstLookView.xaml │ │ │ ├── FirstLookView.xaml.cs │ │ │ ├── FirstLookViewModel.cs │ │ │ └── StringToDockConverter.cs │ ├── EntryControl │ │ ├── ConfigurationExample │ │ │ ├── ConfigurationView.xaml │ │ │ ├── ConfigurationView.xaml.cs │ │ │ └── ConfigurationViewModel.cs │ │ ├── FirstLookExample │ │ │ ├── FirstLookView.xaml │ │ │ ├── FirstLookView.xaml.cs │ │ │ └── FirstLookViewModel.cs │ │ └── ThemingExample │ │ │ ├── ThemingView.xaml │ │ │ └── ThemingView.xaml.cs │ ├── ExpanderControl │ │ ├── FirstLookExample │ │ │ ├── FirstLookView.xaml │ │ │ ├── FirstLookView.xaml.cs │ │ │ ├── FirstLookViewModel.cs │ │ │ └── ViewWidthToSpanCountConverter.cs │ │ └── ThemingExample │ │ │ ├── ThemingView.xaml │ │ │ ├── ThemingView.xaml.cs │ │ │ └── ThemingViewModel.cs │ ├── GaugeControl │ │ └── FirstLookExample │ │ │ ├── FirstLookView.xaml │ │ │ └── FirstLookView.xaml.cs │ ├── GridSplitterControl │ │ └── FirstLookExample │ │ │ ├── FirstLookView.xaml │ │ │ ├── FirstLookView.xaml.cs │ │ │ ├── FirstLookViewModel.cs │ │ │ ├── ImageMetadataPropertyItem.cs │ │ │ └── PropertyItemBaseInfo.cs │ ├── ImageEditorControl │ │ ├── FirstLookExample │ │ │ ├── EditImageView.xaml │ │ │ ├── EditImageView.xaml.cs │ │ │ ├── EditImageViewModel.cs │ │ │ ├── FirstLookView.xaml │ │ │ ├── FirstLookView.xaml.cs │ │ │ ├── FirstLookViewModel.cs │ │ │ ├── ImageModel.cs │ │ │ ├── NavigationHelper.cs │ │ │ ├── PickImageView.xaml │ │ │ ├── PickImageView.xaml.cs │ │ │ └── PickImageViewModel.cs │ │ ├── IImageCommandContext.cs │ │ ├── ImageCommandContext.cs │ │ ├── StorageHelper.cs │ │ └── ThemingExample │ │ │ ├── ThemingView.xaml │ │ │ └── ThemingView.xaml.cs │ ├── ItemsControlControl │ │ └── FirstLookExample │ │ │ ├── Experience.cs │ │ │ ├── FirstLookView.xaml │ │ │ ├── FirstLookView.xaml.cs │ │ │ └── FirstLookViewModel.cs │ ├── ListPickerControl │ │ ├── FirstLookExample │ │ │ ├── FirstLookView.xaml │ │ │ ├── FirstLookView.xaml.cs │ │ │ └── FirstLookViewModel.cs │ │ └── ThemingExample │ │ │ ├── ThemingView.xaml │ │ │ └── ThemingView.xaml.cs │ ├── ListViewControl │ │ └── FirstLookExample │ │ │ ├── BoolToColorConverter.cs │ │ │ ├── FirstLookView.xaml │ │ │ ├── FirstLookView.xaml.cs │ │ │ ├── FirstLookViewModel.cs │ │ │ ├── NameToAbbreviationConverter.cs │ │ │ └── Person.cs │ ├── MapControl │ │ └── FirstLookExample │ │ │ ├── DensityItem.cs │ │ │ ├── DensityShapeStyleSelector.cs │ │ │ ├── FirstLookView.xaml │ │ │ ├── FirstLookView.xaml.cs │ │ │ ├── FirstLookViewModel.cs │ │ │ ├── usa.dbf │ │ │ └── usa.shp │ ├── MaskedEntryControl │ │ ├── FirstLookExample │ │ │ ├── FirstLookView.xaml │ │ │ ├── FirstLookView.xaml.cs │ │ │ └── FirstLookViewModel.cs │ │ └── ThemingExample │ │ │ ├── ThemingView.xaml │ │ │ └── ThemingView.xaml.cs │ ├── NavigationViewControl │ │ ├── ConfigurationExample │ │ │ ├── ConfigurationArea.xaml │ │ │ ├── ConfigurationArea.xaml.cs │ │ │ ├── ConfigurationView.xaml │ │ │ ├── ConfigurationView.xaml.cs │ │ │ └── ConfigurationViewModel.cs │ │ ├── DataBindingExample │ │ │ ├── DataBindingView.xaml │ │ │ ├── DataBindingView.xaml.cs │ │ │ ├── DataBindingViewModel.cs │ │ │ ├── MailBox.cs │ │ │ ├── MailItem.cs │ │ │ └── NavigationItemTemplateSelector.cs │ │ ├── FirstLookExample │ │ │ ├── FirstLookView.xaml │ │ │ └── FirstLookView.xaml.cs │ │ └── ThemingExample │ │ │ ├── ThemingView.xaml │ │ │ └── ThemingView.xaml.cs │ ├── NumericInputControl │ │ ├── FirstLookExample │ │ │ ├── FirstLookView.xaml │ │ │ ├── FirstLookView.xaml.cs │ │ │ ├── FirstLookViewModel.cs │ │ │ ├── Gender.cs │ │ │ └── GenderConverter.cs │ │ └── ThemingExample │ │ │ ├── ThemingView.xaml │ │ │ └── ThemingView.xaml.cs │ ├── PathControl │ │ └── FiguresExample │ │ │ ├── FiguresView.xaml │ │ │ └── FiguresView.xaml.cs │ ├── PdfProcessingControl │ │ ├── FirstLookExample │ │ │ ├── ExampleDocumentSizes.cs │ │ │ ├── FigureCreator.cs │ │ │ ├── FirstLookView.xaml │ │ │ ├── FirstLookView.xaml.cs │ │ │ ├── FirstLookViewModel.cs │ │ │ ├── banner.png │ │ │ └── progressLogo.png │ │ ├── NotEmbeddingFontsExample │ │ │ ├── NotEmbeddingFontsView.xaml │ │ │ ├── NotEmbeddingFontsView.xaml.cs │ │ │ └── NotEmbeddingFontsViewModel.cs │ │ └── PermissionsAndEncryptionExample │ │ │ ├── PermissionsAndEncryptionView.xaml │ │ │ ├── PermissionsAndEncryptionView.xaml.cs │ │ │ └── PermissionsAndEncryptionViewModel.cs │ ├── PdfViewerControl │ │ ├── Common │ │ │ ├── ResourceHelper.cs │ │ │ ├── large_pdf_file.pdf │ │ │ └── pdf_file.pdf │ │ ├── ConfigurationExample │ │ │ ├── ConfigurationArea.xaml │ │ │ ├── ConfigurationArea.xaml.cs │ │ │ ├── ConfigurationView.xaml │ │ │ ├── ConfigurationView.xaml.cs │ │ │ └── ConfigurationViewModel.cs │ │ ├── CustomizationExample │ │ │ ├── CustomResources_Desktop.xaml │ │ │ ├── CustomResources_Desktop.xaml.cs │ │ │ ├── CustomResources_Mobile.xaml │ │ │ ├── CustomResources_Mobile.xaml.cs │ │ │ ├── CustomizationView.xaml │ │ │ └── CustomizationView.xaml.cs │ │ ├── FirstLookExample │ │ │ ├── FirstLookView.xaml │ │ │ └── FirstLookView.xaml.cs │ │ ├── LargeFileExample │ │ │ ├── LargeFileView.xaml │ │ │ └── LargeFileView.xaml.cs │ │ ├── OpenSaveShareExample │ │ │ ├── OpenSaveShareView.xaml │ │ │ ├── OpenSaveShareView.xaml.cs │ │ │ └── OpenSaveShareViewModel.cs │ │ └── ThemingExample │ │ │ ├── ThemingView.xaml │ │ │ └── ThemingView.xaml.cs │ ├── PopupControl │ │ └── ContextMenuExample │ │ │ ├── ContextMenuView.xaml │ │ │ ├── ContextMenuView.xaml.cs │ │ │ ├── ContextMenuViewModel.cs │ │ │ ├── FolderViewModel.cs │ │ │ └── PopupViewModel.cs │ ├── ProgressBarControl │ │ ├── ConfigurationExample │ │ │ ├── ColorToBrushConverter.cs │ │ │ ├── ConfigurationView.xaml │ │ │ ├── ConfigurationView.xaml.cs │ │ │ └── ConfigurationViewModel.cs │ │ ├── CustomizationExample │ │ │ ├── CustomizationView.xaml │ │ │ ├── CustomizationView.xaml.cs │ │ │ └── CustomizationViewModel.cs │ │ ├── FirstLookExample │ │ │ ├── FirstLookView.xaml │ │ │ ├── FirstLookView.xaml.cs │ │ │ └── FirstLookViewModel.cs │ │ └── ThemingExample │ │ │ ├── ThemingView.xaml │ │ │ └── ThemingView.xaml.cs │ ├── RangeSliderControl │ │ ├── ConfigurationExample │ │ │ ├── ConfigurationView.xaml │ │ │ ├── ConfigurationView.xaml.cs │ │ │ └── ConfigurationViewModel.cs │ │ ├── FirstLookExample │ │ │ ├── FirstLookView.xaml │ │ │ ├── FirstLookView.xaml.cs │ │ │ ├── FirstLookViewModel.cs │ │ │ ├── RentalProperty.cs │ │ │ └── ViewWidthToSpanCountConverter.cs │ │ └── ThemingExample │ │ │ ├── ThemingView.xaml │ │ │ └── ThemingView.xaml.cs │ ├── RatingControl │ │ ├── RestaurantReviewExample │ │ │ ├── RestaurantReviewView.xaml │ │ │ └── RestaurantReviewView.xaml.cs │ │ └── ThemingExample │ │ │ ├── ThemingView.xaml │ │ │ └── ThemingView.xaml.cs │ ├── RichTextEditorControl │ │ ├── CustomContextMenuExample │ │ │ ├── CustomContextMenuView.xaml │ │ │ └── CustomContextMenuView.xaml.cs │ │ ├── CustomToolbarExample │ │ │ ├── CustomToolbarView.xaml │ │ │ ├── CustomToolbarView.xaml.cs │ │ │ └── CustomToolbarViewModel.cs │ │ ├── FirstLookExample │ │ │ ├── FirstLookView.xaml │ │ │ ├── FirstLookView.xaml.cs │ │ │ └── FirstLookViewModel.cs │ │ ├── ImportExportExample │ │ │ ├── DocumentHelper.cs │ │ │ ├── DocumentType.cs │ │ │ ├── ExportView.xaml │ │ │ ├── ExportView.xaml.cs │ │ │ ├── ExportViewModel.cs │ │ │ ├── IRichTextContext.cs │ │ │ ├── ImportExportView.xaml │ │ │ ├── ImportExportView.xaml.cs │ │ │ ├── ImportExportViewModel.cs │ │ │ ├── ImportView.xaml │ │ │ ├── ImportView.xaml.cs │ │ │ ├── ImportViewModel.cs │ │ │ ├── NavigationHelper.cs │ │ │ ├── RichTextContext.cs │ │ │ └── SampleResource.cs │ │ └── ThemingExample │ │ │ ├── ThemingView.xaml │ │ │ ├── ThemingView.xaml.cs │ │ │ └── ThemingViewModel.cs │ ├── SchedulerControl │ │ ├── ConfigurationExample │ │ │ ├── ConfigurationArea.xaml │ │ │ ├── ConfigurationArea.xaml.cs │ │ │ ├── ConfigurationView.xaml │ │ │ ├── ConfigurationView.xaml.cs │ │ │ ├── ConfigurationViewModel.cs │ │ │ └── ViewDefinitionToBoolConverter.cs │ │ ├── CustomDateFormatsExample │ │ │ ├── CustomDateFormatsView.xaml │ │ │ ├── CustomDateFormatsView.xaml.cs │ │ │ └── CustomDateFormatsViewModel.cs │ │ ├── CustomizationExample │ │ │ ├── CustomizationView.xaml │ │ │ ├── CustomizationView.xaml.cs │ │ │ ├── CustomizationViewModel.cs │ │ │ ├── CustomizedAppointmentView.cs │ │ │ ├── OfficeMeeting.cs │ │ │ └── Resources │ │ │ │ ├── AppointmentLocationToColorConverter.cs │ │ │ │ ├── CustomSchedulingResources_Desktop.xaml │ │ │ │ ├── CustomSchedulingResources_Desktop.xaml.cs │ │ │ │ ├── CustomSchedulingResources_Mobile.xaml │ │ │ │ └── CustomSchedulingResources_Mobile.xaml.cs │ │ ├── FirtsLookExample │ │ │ ├── FirstLookView.xaml │ │ │ ├── FirstLookView.xaml.cs │ │ │ └── FirstLookViewModel.cs │ │ └── ThemingExample │ │ │ ├── ThemingView.xaml │ │ │ ├── ThemingView.xaml.cs │ │ │ └── ThemingViewModel.cs │ ├── SegmentedControlControl │ │ ├── FirstLookExample │ │ │ ├── FirstLookView.xaml │ │ │ ├── FirstLookView.xaml.cs │ │ │ └── FirstLookViewModel.cs │ │ └── ThemingExample │ │ │ ├── ThemingView.xaml │ │ │ └── ThemingView.xaml.cs │ ├── SideDrawerControl │ │ └── FirstLookExample │ │ │ ├── FirstLookView.xaml │ │ │ ├── FirstLookView.xaml.cs │ │ │ ├── FirstLookViewModel.cs │ │ │ └── Item.cs │ ├── SignaturePadControl │ │ └── FirstLookExample │ │ │ ├── FirstLookView.xaml │ │ │ ├── FirstLookView.xaml.cs │ │ │ └── FirstLookViewModel.cs │ ├── SlideViewControl │ │ ├── ConfigurationExample │ │ │ ├── ConfigurationView.xaml │ │ │ ├── ConfigurationView.xaml.cs │ │ │ └── ConfigurationViewModel.cs │ │ ├── FirstLookExample │ │ │ ├── FirstLookView.xaml │ │ │ ├── FirstLookView.xaml.cs │ │ │ └── FirstLookViewModel.cs │ │ └── ThemingExample │ │ │ ├── ThemingView.xaml │ │ │ ├── ThemingView.xaml.cs │ │ │ └── ThemingViewModel.cs │ ├── SliderControl │ │ ├── ConfigurationExample │ │ │ ├── ConfigurationView.xaml │ │ │ ├── ConfigurationView.xaml.cs │ │ │ └── ConfigurationViewModel.cs │ │ ├── FirstLookExample │ │ │ ├── FirstLookView.xaml │ │ │ ├── FirstLookView.xaml.cs │ │ │ └── FirstLookViewModel.cs │ │ └── ThemingExample │ │ │ ├── ThemingView.xaml │ │ │ └── ThemingView.xaml.cs │ ├── SpreadProcessingControl │ │ ├── AddCommentsExample │ │ │ ├── AddCommentsView.xaml │ │ │ ├── AddCommentsView.xaml.cs │ │ │ └── AddCommentsViewModel.cs │ │ ├── AddNotesExample │ │ │ ├── AddNotesView.xaml │ │ │ ├── AddNotesView.xaml.cs │ │ │ ├── AddNotesViewModel.cs │ │ │ ├── Product.cs │ │ │ └── Products.cs │ │ ├── ConditionalFormattingExample │ │ │ ├── ConditionalFormattingView.xaml │ │ │ ├── ConditionalFormattingView.xaml.cs │ │ │ ├── ConditionalFormattingViewModel.cs │ │ │ └── SpreadProcessingDocument2.xlsx │ │ ├── ConvertExample │ │ │ ├── ConvertView.xaml │ │ │ ├── ConvertView.xaml.cs │ │ │ ├── ConvertViewModel.cs │ │ │ └── SpreadProcessingDocument1.xlsx │ │ ├── FindAndReplaceExample │ │ │ ├── FindAndReplaceView.xaml │ │ │ ├── FindAndReplaceView.xaml.cs │ │ │ └── FindAndReplaceViewModel.cs │ │ └── FirstLookExample │ │ │ ├── FirstLookView.xaml │ │ │ ├── FirstLookView.xaml.cs │ │ │ └── FirstLookViewModel.cs │ ├── SpreadStreamProcessingControl │ │ ├── FirstLookExample │ │ │ ├── CourseViewModel.cs │ │ │ ├── FirstLookView.xaml │ │ │ ├── FirstLookView.xaml.cs │ │ │ └── FirstLookViewModel.cs │ │ └── ImportSpreadsheetExample │ │ │ ├── ColumnViewModel.cs │ │ │ ├── ImportSpreadsheetView.xaml │ │ │ ├── ImportSpreadsheetView.xaml.cs │ │ │ ├── ImportSpreadsheetViewModel.cs │ │ │ ├── WorkbookViewModel.cs │ │ │ ├── WorksheetViewModel.cs │ │ │ └── sample.xlsx │ ├── TabViewControl │ │ ├── ConfigurationExample │ │ │ ├── ConfigurationArea.xaml │ │ │ ├── ConfigurationArea.xaml.cs │ │ │ ├── ConfigurationView.xaml │ │ │ ├── ConfigurationView.xaml.cs │ │ │ ├── ConfigurationViewModel.cs │ │ │ ├── Customer.cs │ │ │ └── Location.cs │ │ ├── ThemingExample │ │ │ ├── ThemingView.xaml │ │ │ └── ThemingView.xaml.cs │ │ └── WorldClockExample │ │ │ ├── WorldClockView.xaml │ │ │ └── WorldClockView.xaml.cs │ ├── TemplatedPickerControl │ │ ├── Common │ │ │ ├── ColorAndSizeViewModel.cs │ │ │ ├── ColorViewModel.cs │ │ │ ├── SizeModel.cs │ │ │ ├── StylesAndTemplates.xaml │ │ │ └── StylesAndTemplates.xaml.cs │ │ ├── FirstLookExample │ │ │ ├── FirstLookView.xaml │ │ │ └── FirstLookView.xaml.cs │ │ └── ThemingExample │ │ │ ├── ThemingView.xaml │ │ │ └── ThemingView.xaml.cs │ ├── TimePickerControl │ │ ├── FirstLookExample │ │ │ ├── FirstLookView.xaml │ │ │ ├── FirstLookView.xaml.cs │ │ │ └── FirstLookViewModel.cs │ │ └── ThemingExample │ │ │ ├── ThemingView.xaml │ │ │ └── ThemingView.xaml.cs │ ├── TimeSpanPickerControl │ │ ├── FirstLookExample │ │ │ ├── FirstLookView.xaml │ │ │ ├── FirstLookView.xaml.cs │ │ │ └── FirstLookViewModel.cs │ │ └── ThemingExample │ │ │ ├── ThemingView.xaml │ │ │ └── ThemingView.xaml.cs │ ├── ToolbarControl │ │ ├── FirstLookExample │ │ │ ├── FirstLookView.xaml │ │ │ ├── FirstLookView.xaml.cs │ │ │ └── FirstLookViewModel.cs │ │ └── ThemingExample │ │ │ ├── ThemingView.xaml │ │ │ └── ThemingView.xaml.cs │ ├── TreeDataGridControl │ │ ├── Common │ │ │ ├── DataSourcePaths.cs │ │ │ ├── EmployeeDataSource.xml │ │ │ ├── EmployeeViewModel.cs │ │ │ ├── FolderDataSource.xml │ │ │ └── FolderModel.cs │ │ ├── FirstLookExample │ │ │ ├── FirstLookView.xaml │ │ │ ├── FirstLookView.xaml.cs │ │ │ └── FirstLookViewModel.cs │ │ └── ThemingExample │ │ │ ├── ThemingView.xaml │ │ │ ├── ThemingView.xaml.cs │ │ │ └── ThemingViewModel.cs │ ├── TreeViewControl │ │ ├── Common │ │ │ ├── DataSourcePaths.cs │ │ │ ├── FileNode.cs │ │ │ └── FolderNode.cs │ │ ├── ConfigurationExample │ │ │ ├── ConfigurationArea.xaml │ │ │ ├── ConfigurationArea.xaml.cs │ │ │ ├── ConfigurationView.xaml │ │ │ ├── ConfigurationView.xaml.cs │ │ │ ├── ConfigurationViewModel.cs │ │ │ └── FileExplorerDataSource.xml │ │ ├── CustomizationExample │ │ │ ├── CustomizationView.xaml │ │ │ ├── CustomizationView.xaml.cs │ │ │ ├── CustomizationViewModel.cs │ │ │ ├── FavoriteFoldersDataSource.xml │ │ │ └── FileTypeToIconColorConverter.cs │ │ ├── FirstLookExample │ │ │ ├── Account.cs │ │ │ ├── AccountDataSource.xml │ │ │ ├── Email.cs │ │ │ ├── EmailsPage.xaml │ │ │ ├── EmailsPage.xaml.cs │ │ │ ├── EmailsView.xaml │ │ │ ├── EmailsView.xaml.cs │ │ │ ├── EmailsViewModel.cs │ │ │ ├── FirstLookView.xaml │ │ │ ├── FirstLookView.xaml.cs │ │ │ ├── FirstLookViewModel.cs │ │ │ └── Folder.cs │ │ ├── LoadOnDemandExample │ │ │ ├── FileSystemService.cs │ │ │ ├── FileViewModel.cs │ │ │ ├── FolderViewModel.cs │ │ │ ├── IFileSystemService.cs │ │ │ ├── LoadOnDemandDataSource.xml │ │ │ ├── LoadOnDemandView.xaml │ │ │ ├── LoadOnDemandView.xaml.cs │ │ │ └── LoadOnDemandViewModel.cs │ │ └── ThemingExample │ │ │ ├── ThemingView.xaml │ │ │ ├── ThemingView.xaml.cs │ │ │ └── ThemingViewModel.cs │ ├── WordsProcessingControl │ │ ├── Converters │ │ │ └── SkiaImageConverter.cs │ │ ├── ExportExample │ │ │ ├── DocToBeProcessed.docx │ │ │ ├── ExportView.xaml │ │ │ ├── ExportView.xaml.cs │ │ │ └── ExportViewModel.cs │ │ ├── FindAndReplaceExample │ │ │ ├── FindAndReplaceView.xaml │ │ │ ├── FindAndReplaceView.xaml.cs │ │ │ ├── FindAndReplaceViewModel.cs │ │ │ └── JohnGrisham.docx │ │ ├── FirstLookExample │ │ │ ├── FirstLookView.xaml │ │ │ ├── FirstLookView.xaml.cs │ │ │ └── FirstLookViewModel.cs │ │ ├── NumberingFields │ │ │ ├── FontsProvider.cs │ │ │ ├── NumberingFieldsView.xaml │ │ │ ├── NumberingFieldsView.xaml.cs │ │ │ ├── NumberingFieldsViewModel.cs │ │ │ └── SampleDocument.docx │ │ └── TableOfContentsExample │ │ │ ├── TableOfContents.docx │ │ │ ├── TableOfContentsView.xaml │ │ │ ├── TableOfContentsView.xaml.cs │ │ │ └── TableOfContentsViewModel.cs │ ├── WrapLayoutControl │ │ └── FirstLookExample │ │ │ ├── FirstLookView.xaml │ │ │ └── FirstLookView.xaml.cs │ └── ZipLibraryControl │ │ └── CreateArchiveExample │ │ ├── Converters │ │ ├── FileExtensionToIconConverter.cs │ │ ├── FileSizeConverter.cs │ │ └── SelectionToBackgroundColorConverter.cs │ │ ├── CreateArchiveView.xaml │ │ ├── CreateArchiveView.xaml.cs │ │ ├── CreateArchiveViewModel.cs │ │ ├── FileViewModel.cs │ │ ├── ListViewItemTappedBehavior.cs │ │ └── Resources │ │ └── ZipSampleDocuments │ │ ├── Balance Sheet.xlsx │ │ ├── Book.pdf │ │ ├── Food Order.xlsx │ │ ├── Freeze Panes.xlsx │ │ ├── Monthly Report.xlsx │ │ ├── Multipage Document.pdf │ │ ├── Orders Log.xlsx │ │ ├── Printing.xlsx │ │ ├── RadImageEditor.png │ │ ├── RadRichTextBox.docx │ │ ├── RepeatHeaderRows.docx │ │ ├── Sample.pdf │ │ ├── photo1.png │ │ ├── photo2.png │ │ ├── photo3.png │ │ └── thumbnail.png ├── Extensions.cs ├── Extensions │ └── OnDotNetExtension.cs ├── GlobalUsings.cs ├── Helpers │ ├── DesktopUtils.cs │ ├── MouseCursorType.cs │ ├── MouseHelper.MacCatalyst.cs │ ├── MouseHelper.Windows.cs │ ├── MouseHelper.cs │ ├── PermissionsHelper.cs │ └── Utils.cs ├── Layouts │ ├── QGrid │ │ ├── QGrid.cs │ │ └── QGridLayoutManager.cs │ ├── UniformLayout │ │ ├── IUniformLayout.cs │ │ ├── UniformLayout.cs │ │ ├── UniformLayoutHorizontalManager.cs │ │ ├── UniformLayoutManager.cs │ │ ├── UniformLayoutMode.cs │ │ └── UniformLayoutVerticalManager.cs │ └── VerticalUniformLayout │ │ ├── VerticalUniformLayout.cs │ │ └── VerticalUniformLayoutManager.cs ├── MauiProgram.cs ├── Pages │ ├── ConfigurationPage.xaml │ ├── ConfigurationPage.xaml.cs │ ├── ControlPage.xaml │ ├── ControlPage.xaml.cs │ ├── DescriptionPage.xaml │ ├── DescriptionPage.xaml.cs │ ├── ExamplePage.xaml │ ├── ExamplePage.xaml.cs │ ├── MainPageDesktop.xaml │ ├── MainPageDesktop.xaml.cs │ ├── MainPageMobile.xaml │ ├── MainPageMobile.xaml.cs │ ├── SearchPageMobile.xaml │ ├── SearchPageMobile.xaml.cs │ ├── SettingsPageMobile.xaml │ ├── SettingsPageMobile.xaml.cs │ ├── ThemeSettingsPage.xaml │ ├── ThemeSettingsPage.xaml.cs │ ├── UITestsHomePage.xaml │ └── UITestsHomePage.xaml.cs ├── Platforms │ ├── Android │ │ ├── AndroidManifest.xml │ │ ├── MainActivity.cs │ │ ├── MainApplication.cs │ │ └── Resources │ │ │ ├── values │ │ │ └── colors.xml │ │ │ └── xml │ │ │ └── file_paths.xml │ ├── MacCatalyst │ │ ├── AppDelegate.cs │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ └── Program.cs │ ├── Windows │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── RadImageButton.cs │ │ ├── RadImageButtonHandler.cs │ │ └── app.manifest │ └── iOS │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ ├── PrivacyInfo.xcprivacy │ │ ├── Program.cs │ │ └── Resources │ │ └── LaunchScreen.xib ├── Properties │ └── launchSettings.json ├── Resources │ ├── Fonts │ │ ├── OpenSans-Regular.ttf │ │ ├── telerikcontrolsicons.ttf │ │ └── telerikfontexamples.ttf │ ├── ImageEditor │ │ └── FirstLookExample │ │ │ ├── SampleImage1.jpg │ │ │ ├── SampleImage2.jpg │ │ │ ├── SampleImage3.jpg │ │ │ ├── SampleImage4.jpg │ │ │ ├── SampleImage5.jpg │ │ │ └── SampleImage6.jpg │ ├── Images │ │ ├── aiprompt_white.svg │ │ ├── airplane.svg │ │ ├── american_pancakes.png │ │ ├── arrowleft.svg │ │ ├── arrowright.svg │ │ ├── autocomplete_white.svg │ │ ├── badgeview_white.svg │ │ ├── bank_card.svg │ │ ├── barcodespecialoffersalad.png │ │ ├── belgian_chocolate.png │ │ ├── blueberry_waffle.png │ │ ├── border_user1.png │ │ ├── borderconfigurationavatar.png │ │ ├── busyindicator_theming_gallery10_header_active.png │ │ ├── busyindicator_theming_gallery10_header_inactive.png │ │ ├── busyindicator_theming_gallery1_header_active.png │ │ ├── busyindicator_theming_gallery1_header_inactive.png │ │ ├── busyindicator_theming_gallery2_header_active.png │ │ ├── busyindicator_theming_gallery2_header_inactive.png │ │ ├── busyindicator_theming_gallery3_header_active.png │ │ ├── busyindicator_theming_gallery3_header_inactive.png │ │ ├── busyindicator_theming_gallery4_header_active.png │ │ ├── busyindicator_theming_gallery4_header_inactive.png │ │ ├── busyindicator_theming_gallery5_header_active.png │ │ ├── busyindicator_theming_gallery5_header_inactive.png │ │ ├── busyindicator_theming_gallery6_header_active.png │ │ ├── busyindicator_theming_gallery6_header_inactive.png │ │ ├── busyindicator_theming_gallery7_header_active.png │ │ ├── busyindicator_theming_gallery7_header_inactive.png │ │ ├── busyindicator_theming_gallery8_header_active.png │ │ ├── busyindicator_theming_gallery8_header_inactive.png │ │ ├── busyindicator_theming_gallery9_header_active.png │ │ ├── busyindicator_theming_gallery9_header_inactive.png │ │ ├── button_background_image.png │ │ ├── button_customization_background_image.png │ │ ├── button_white.svg │ │ ├── calendar_white.svg │ │ ├── car.svg │ │ ├── carpetcleaning.svg │ │ ├── chartarea1headeractive.png │ │ ├── chartarea1headerinactive.png │ │ ├── chartarea2headeractive.png │ │ ├── chartarea2headerinactive.png │ │ ├── chartarea3headeractive.png │ │ ├── chartarea3headerinactive.png │ │ ├── chartarea4headeractive.png │ │ ├── chartarea4headerinactive.png │ │ ├── chartbar1headeractive.png │ │ ├── chartbar1headerinactive.png │ │ ├── chartbar2headeractive.png │ │ ├── chartbar2headerinactive.png │ │ ├── chartbar3headeractive.png │ │ ├── chartbar3headerinactive.png │ │ ├── chartbar4headeractive.png │ │ ├── chartbar4headerinactive.png │ │ ├── chartbar5headeractive.png │ │ ├── chartbar5headerinactive.png │ │ ├── chartbar6headeractive.png │ │ ├── chartbar6headerinactive.png │ │ ├── chartbar7headeractive.png │ │ ├── chartbar7headerinactive.png │ │ ├── chartbar8headeractive.png │ │ ├── chartbar8headerinactive.png │ │ ├── chartdonut1headeractive.png │ │ ├── chartdonut1headerinactive.png │ │ ├── chartfinancial1headeractive.png │ │ ├── chartfinancial1headerinactive.png │ │ ├── chartfinancial2headeractive.png │ │ ├── chartfinancial2headerinactive.png │ │ ├── chartfinancial3headeractive.png │ │ ├── chartfinancial3headerinactive.png │ │ ├── chartline1headeractive.png │ │ ├── chartline1headerinactive.png │ │ ├── chartline2headeractive.png │ │ ├── chartline2headerinactive.png │ │ ├── chartline3headeractive.png │ │ ├── chartline3headerinactive.png │ │ ├── chartline4headeractive.png │ │ ├── chartline4headerinactive.png │ │ ├── chartpie1headeractive.png │ │ ├── chartpie1headerinactive.png │ │ ├── chartpie2headeractive.png │ │ ├── chartpie2headerinactive.png │ │ ├── chartscattered1headeractive.png │ │ ├── chartscattered1headerinactive.png │ │ ├── chartscattered2headeractive.png │ │ ├── chartscattered2headerinactive.png │ │ ├── chartscattered3headeractive.png │ │ ├── chartscattered3headerinactive.png │ │ ├── chartscattered4headeractive.png │ │ ├── chartscattered4headerinactive.png │ │ ├── chartscattered5headeractive.png │ │ ├── chartscattered5headerinactive.png │ │ ├── chat_configuration_image.png │ │ ├── chat_configuration_image_1.png │ │ ├── chat_configuration_image_2.png │ │ ├── cleaning.svg │ │ ├── clock.svg │ │ ├── collectionview_white.svg │ │ ├── comedy.svg │ │ ├── dataform_customization_date.svg │ │ ├── dataform_customization_email.svg │ │ ├── dataform_customization_gender.svg │ │ ├── dataform_customization_name.svg │ │ ├── dataform_customization_password.svg │ │ ├── dataform_customization_phone.svg │ │ ├── dataform_customization_username.svg │ │ ├── dataform_white.svg │ │ ├── datagrid_white.svg │ │ ├── datapager_white.svg │ │ ├── dev.svg │ │ ├── developer.svg │ │ ├── developer_grey.svg │ │ ├── docx_file.png │ │ ├── dotnet_bot.svg │ │ ├── dotnet_bot_2a.svg │ │ ├── drama.svg │ │ ├── drive.png │ │ ├── encoding.svg │ │ ├── entryfirstlook.svg │ │ ├── export_html.svg │ │ ├── export_pdf.svg │ │ ├── export_text.svg │ │ ├── export_word.svg │ │ ├── flag_1.png │ │ ├── flag_2.png │ │ ├── flag_3.png │ │ ├── flag_4.png │ │ ├── flag_5.png │ │ ├── flag_6.png │ │ ├── flight.svg │ │ ├── history.svg │ │ ├── homepagebackground.svg │ │ ├── homepainting.svg │ │ ├── icon_csharp_ccw.svg │ │ ├── icon_csharp_cw.svg │ │ ├── icon_documentation_white.svg │ │ ├── icon_feedback_white.svg │ │ ├── icon_ninjas.svg │ │ ├── icon_sun.svg │ │ ├── icon_umbrella.svg │ │ ├── icon_video.svg │ │ ├── imageeditor_white.svg │ │ ├── import_html.svg │ │ ├── import_pdf.svg │ │ ├── import_text.svg │ │ ├── import_word.svg │ │ ├── info_desktop.svg │ │ ├── info_mobile.svg │ │ ├── info_mobile_white.svg │ │ ├── length.svg │ │ ├── lock.svg │ │ ├── logo.svg │ │ ├── logo_cryptoapp.svg │ │ ├── logo_progress.svg │ │ ├── logosplashscreen.svg │ │ ├── melodicchillout.svg │ │ ├── melodicprogressive.svg │ │ ├── navigationview_firstlook_image_1.png │ │ ├── navigationview_firstlook_image_10.png │ │ ├── navigationview_firstlook_image_11.png │ │ ├── navigationview_firstlook_image_12.png │ │ ├── navigationview_firstlook_image_2.png │ │ ├── navigationview_firstlook_image_3.png │ │ ├── navigationview_firstlook_image_4.png │ │ ├── navigationview_firstlook_image_5.png │ │ ├── navigationview_firstlook_image_6.png │ │ ├── navigationview_firstlook_image_7.png │ │ ├── navigationview_firstlook_image_8.png │ │ ├── navigationview_firstlook_image_9.png │ │ ├── navigationview_white.svg │ │ ├── nodata.svg │ │ ├── pdf_file.png │ │ ├── pdfprocessingfirstlookscreen.png │ │ ├── pdfviewer_white.svg │ │ ├── person_1.png │ │ ├── person_2.png │ │ ├── person_3.png │ │ ├── person_4.png │ │ ├── person_5.png │ │ ├── person_6.png │ │ ├── person_7.png │ │ ├── person_8.png │ │ ├── person_9.png │ │ ├── png_file.png │ │ ├── popup_drive_icon.svg │ │ ├── productmanager.svg │ │ ├── productmanager_grey.svg │ │ ├── property_item_1.png │ │ ├── property_item_10.png │ │ ├── property_item_11.png │ │ ├── property_item_12.png │ │ ├── property_item_2.png │ │ ├── property_item_3.png │ │ ├── property_item_4.png │ │ ├── property_item_5.png │ │ ├── property_item_6.png │ │ ├── property_item_7.png │ │ ├── property_item_8.png │ │ ├── property_item_9.png │ │ ├── qa.svg │ │ ├── ratingrestaurantlogo.svg │ │ ├── remote_work.svg │ │ ├── salad.png │ │ ├── salad_1.png │ │ ├── salad_2.png │ │ ├── salad_3.png │ │ ├── salad_4.png │ │ ├── scheduler_white.svg │ │ ├── searchentry.svg │ │ ├── searchheader.svg │ │ ├── selected_item.png │ │ ├── settings.svg │ │ ├── sick_leave.svg │ │ ├── slider_white.svg │ │ ├── tech_news_1.jpg │ │ ├── tech_news_10.jpg │ │ ├── tech_news_11.jpg │ │ ├── tech_news_12.jpg │ │ ├── tech_news_13.jpg │ │ ├── tech_news_14.jpg │ │ ├── tech_news_15.jpg │ │ ├── tech_news_2.jpg │ │ ├── tech_news_3.jpg │ │ ├── tech_news_4.jpg │ │ ├── tech_news_5.jpg │ │ ├── tech_news_6.jpg │ │ ├── tech_news_7.jpg │ │ ├── tech_news_8.jpg │ │ ├── tech_news_9.jpg │ │ ├── theme_white.svg │ │ ├── time_off.svg │ │ ├── tiramisu.png │ │ ├── toolbar_white.svg │ │ ├── top.svg │ │ ├── train.svg │ │ ├── unselected_item.png │ │ ├── ux.svg │ │ ├── uxdesigner.svg │ │ ├── uxdesigner_grey.svg │ │ ├── vacationbot.png │ │ ├── viewcode.svg │ │ ├── viewcode_white.svg │ │ ├── vocalchillout.svg │ │ └── xlsx_file.png │ ├── RichTextEditor │ │ ├── CustomContextMenuExample │ │ │ └── BarcelonaAndTenerife.html │ │ ├── CustomToolbarExample │ │ │ └── ShareYourFeedback.html │ │ ├── Emojis │ │ │ ├── emoji_amazed.png │ │ │ ├── emoji_confused.png │ │ │ ├── emoji_cool.png │ │ │ ├── emoji_dissapointment.png │ │ │ ├── emoji_loughing.png │ │ │ ├── emoji_love.png │ │ │ ├── emoji_neutral.png │ │ │ ├── emoji_sad.png │ │ │ ├── emoji_smile.png │ │ │ ├── emoji_smile2.png │ │ │ ├── emoji_tongue_out.png │ │ │ └── emoji_wink.png │ │ ├── FirstLookExample │ │ │ └── PickYourHoliday.html │ │ └── ImportExportExample │ │ │ ├── RichTextEditor_Overview.docx │ │ │ ├── RichTextEditor_Overview.html │ │ │ ├── RichTextEditor_Overview.rtf │ │ │ └── RichTextEditor_Overview.txt │ ├── appicon.svg │ ├── appiconfg.svg │ ├── appiconfg_android.svg │ └── logo.svg ├── Selectors │ └── SearchResultListViewItemTemplateSelector.cs ├── Services │ ├── AssemblyResourceService.cs │ ├── ConfigurationAreaService.cs │ ├── ConfigurationService.cs │ ├── ControlsService.cs │ ├── ExampleService.cs │ ├── FilePickerService.cs │ ├── FileViewerService.Android.cs │ ├── FileViewerService.UWP.cs │ ├── FileViewerService.cs │ ├── FileViewerService.iOS.cs │ ├── Interfaces │ │ ├── IConfigurationAreaService.cs │ │ ├── IConfigurationService.cs │ │ ├── IControlsService.cs │ │ ├── IExampleService.cs │ │ ├── IFilePickerService.cs │ │ ├── IFileViewerService.cs │ │ ├── IMediaPickerService.cs │ │ ├── IMessageService.cs │ │ ├── INavigationService.cs │ │ ├── IResourceService.cs │ │ └── IToastMessageService.cs │ ├── MediaPickerService.cs │ ├── MessageService.cs │ ├── NavigationService.cs │ ├── Search │ │ ├── ISearchService.cs │ │ ├── SearchResult.cs │ │ ├── SearchResultType.cs │ │ └── SearchService.cs │ ├── Serialization │ │ ├── ISerializationService.cs │ │ └── SerializationService.cs │ ├── ToastMessageService.Android.cs │ ├── ToastMessageService.Windows.cs │ ├── ToastMessageService.cs │ └── ToastMessageService.iOS.cs ├── Styles │ ├── ConfigurationViewResources.xaml │ ├── ConfigurationViewResources.xaml.cs │ ├── GalleryResources.xaml │ └── GalleryResources.xaml.cs ├── ViewModels │ ├── ConfigurationExampleViewModel.cs │ ├── ControlViewModel.cs │ ├── DescriptionViewModel.cs │ ├── ExampleViewModel.cs │ ├── GalleryExampleViewModelBase.cs │ ├── GalleryItemViewModelBase.cs │ ├── HomeViewModel.cs │ ├── PageViewModel.cs │ ├── Search │ │ ├── HighlightedSearchResult.cs │ │ ├── HighlightedSearchResultType.cs │ │ ├── HighlightedText.cs │ │ ├── SearchViewModel.cs │ │ └── SearchViewModelMobile.cs │ ├── SettingsViewModel.cs │ ├── ThemeSettingsViewModel.cs │ ├── Themes │ │ └── Catalog.json │ └── ViewModelBase.cs ├── Views │ ├── ControlViewDesktop.xaml │ ├── ControlViewDesktop.xaml.cs │ ├── GalleryExampleViewBase.xaml │ ├── GalleryExampleViewBase.xaml.cs │ ├── HighlightsCardsView.xaml │ ├── HighlightsCardsView.xaml.cs │ ├── HighlightsView.xaml │ ├── HighlightsView.xaml.cs │ ├── HomeViewDesktop.xaml │ ├── HomeViewDesktop.xaml.cs │ ├── InnerSearchView.xaml │ ├── InnerSearchView.xaml.cs │ ├── LayoutView.xaml │ ├── LayoutView.xaml.cs │ ├── NavigationItemView.xaml │ ├── NavigationItemView.xaml.cs │ ├── PickerExampleViewBase.xaml │ ├── PickerExampleViewBase.xaml.cs │ ├── QSFPageContentView.xaml │ ├── QSFPageContentView.xaml.cs │ ├── SearchViewDesktop.xaml │ ├── SearchViewDesktop.xaml.cs │ ├── SettingsView.xaml │ ├── SettingsView.xaml.cs │ ├── SmoothItemView.xaml │ ├── SmoothItemView.xaml.cs │ ├── UniformView.xaml │ └── UniformView.xaml.cs └── config.xml ├── CryptoTracker ├── App.xaml ├── App.xaml.cs ├── Converters │ └── ValueToColorConverter.cs ├── CryptoTracker.csproj ├── CryptoTracker.sln ├── Data │ ├── CoinData.cs │ ├── CoinDataService.cs │ ├── ICoinDataService.cs │ └── TrendingCoinData.cs ├── Formatters │ └── ShortPriceFormatter.cs ├── MauiProgram.cs ├── Pages │ ├── CoinInfoPage.xaml │ ├── CoinInfoPage.xaml.cs │ ├── CoinSelectionPage.xaml │ ├── CoinSelectionPage.xaml.cs │ ├── DesktopPage.xaml │ └── DesktopPage.xaml.cs ├── Platforms │ ├── Android │ │ ├── AndroidManifest.xml │ │ ├── MainActivity.cs │ │ ├── MainApplication.cs │ │ └── Resources │ │ │ └── values │ │ │ └── colors.xml │ ├── MacCatalyst │ │ ├── AppDelegate.cs │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ └── Program.cs │ ├── Windows │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Package.appxmanifest │ │ └── app.manifest │ └── iOS │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ ├── PrivacyInfo.xcprivacy │ │ ├── Program.cs │ │ └── Resources │ │ └── LaunchScreen.xib ├── Properties │ └── launchSettings.json ├── Resources │ ├── Fonts │ │ ├── OpenSans-Regular.ttf │ │ ├── Ubuntu-MediumItalic.ttf │ │ └── telerikfontexamples.ttf │ ├── Images │ │ ├── arrowright.svg │ │ ├── arrowrightout.svg │ │ ├── chartcandleactive.svg │ │ ├── chartlineactive.svg │ │ └── download.svg │ ├── appicon.svg │ ├── appiconfg.svg │ ├── launcher.svg │ └── loading.svg ├── Utils │ └── Utils.cs ├── ViewModels │ ├── CoinInfoViewModel.cs │ └── CoinSelectionViewModel.cs └── Views │ ├── CoinHeaderView.xaml │ ├── CoinHeaderView.xaml.cs │ ├── CoinInfoChartView.xaml │ ├── CoinInfoChartView.xaml.cs │ ├── CoinInfoDataGridView.xaml │ ├── CoinInfoDataGridView.xaml.cs │ ├── CoinSelectionEventArgs.cs │ ├── CoinSelectionView.xaml │ └── CoinSelectionView.xaml.cs ├── Directory.Build.props ├── Directory.Build.targets ├── NuGet.Config └── SdkBrowser ├── .editorconfig ├── App.xaml ├── App.xaml.cs ├── Behaviors └── PickImageBehavior.cs ├── Common ├── Catalog.json ├── Category.cs ├── Configuration.cs ├── Control.cs ├── Example.cs └── UIAutomation.cs ├── Converters ├── FontIconConverter.cs ├── ImageSourceConverter.cs ├── InvertedBooleanConverter.cs └── StringPathConverter.cs ├── Data ├── CategoricalData.cs ├── DataProvider.cs ├── NumericalData.cs ├── OhlcDataPoint.cs ├── SimpleData.cs └── TemporalData.cs ├── Examples ├── AIPromptControl │ ├── AIPromptViewModel.cs │ ├── FeaturesCategory │ │ ├── AIPromptButtonExample │ │ │ ├── AIPromptButton.xaml │ │ │ └── AIPromptButton.xaml.cs │ │ ├── CustomRatingExample │ │ │ ├── CustomResponseRating.xaml │ │ │ └── CustomResponseRating.xaml.cs │ │ └── SuggestionsExample │ │ │ ├── Suggestions.xaml │ │ │ ├── Suggestions.xaml.cs │ │ │ └── ViewModel.cs │ ├── GettingStartedCategory │ │ └── GettingStartedExample │ │ │ ├── AIPromptGettingStartedXaml.xaml │ │ │ ├── AIPromptGettingStartedXaml.xaml.cs │ │ │ └── ViewModel.cs │ ├── StylingCategory │ │ ├── AIPromptButtonStylingExample │ │ │ ├── AIPromptButtonStyling.xaml │ │ │ └── AIPromptButtonStyling.xaml.cs │ │ ├── CommandsStylingExample │ │ │ ├── CommandsViewStyling.xaml │ │ │ └── CommandsViewStyling.xaml.cs │ │ ├── InputViewStylingExample │ │ │ ├── InputViewStyling.xaml │ │ │ └── InputViewStyling.xaml.cs │ │ ├── OutputViewStylingExample │ │ │ ├── OutputViewStyling.xaml │ │ │ └── OutputViewStyling.xaml.cs │ │ ├── PopupStylingExample │ │ │ ├── PopupStyling.xaml │ │ │ └── PopupStyling.xaml.cs │ │ ├── SuggestionsStylingExample │ │ │ ├── SuggestionsStyling.xaml │ │ │ └── SuggestionsStyling.xaml.cs │ │ └── TabViewStylingExample │ │ │ ├── TabViewStyling.xaml │ │ │ └── TabViewStyling.xaml.cs │ └── ViewsCategory │ │ ├── CommandsViewExample │ │ ├── CommandsView.xaml │ │ └── CommandsView.xaml.cs │ │ ├── InputOutputViewsExample │ │ ├── InputOutputViews.xaml │ │ └── InputOutputViews.xaml.cs │ │ ├── ViewModel.cs │ │ └── ViewsExample │ │ ├── ManuallyDefinedViews.xaml │ │ └── ManuallyDefinedViews.xaml.cs ├── AccordionControl │ ├── FeaturesCategory │ │ ├── AccordionItemExample │ │ │ ├── AccordionItem.xaml │ │ │ └── AccordionItem.xaml.cs │ │ └── KeyFeaturesExample │ │ │ ├── KeyFeatures.xaml │ │ │ └── KeyFeatures.xaml.cs │ └── GettingStartedCategory │ │ └── GettingStartedExample │ │ ├── AccordionGettingStartedCSharp.cs │ │ ├── AccordionGettingStartedXaml.xaml │ │ └── AccordionGettingStartedXaml.xaml.cs ├── AutoCompleteControl │ ├── CommandsCategory │ │ └── RemoveTokenExample │ │ │ ├── CustomAutoCompleteRemoveTokenCommand.cs │ │ │ ├── RemoveTokenCommand.xaml │ │ │ └── RemoveTokenCommand.xaml.cs │ ├── FeaturesCategory │ │ ├── ConfigurationExample │ │ │ ├── Configuration.xaml │ │ │ └── Configuration.xaml.cs │ │ ├── CustomFilteringExample │ │ │ ├── CustomAutoCompleteFilter.cs │ │ │ ├── CustomFiltering.xaml │ │ │ └── CustomFiltering.xaml.cs │ │ ├── DataBindingExample │ │ │ ├── DataBinding.xaml │ │ │ └── DataBinding.xaml.cs │ │ ├── DisplayTextExample │ │ │ ├── DisplayText.xaml │ │ │ ├── DisplayText.xaml.cs │ │ │ └── MyTextFormatter.cs │ │ ├── HighlightTextExample │ │ │ ├── HighlightText.xaml │ │ │ └── HighlightText.xaml.cs │ │ ├── NestedPropertyExample │ │ │ ├── BusinessObject.cs │ │ │ ├── NestedProperty.xaml │ │ │ ├── NestedProperty.xaml.cs │ │ │ └── NestedPropertyViewModel.cs │ │ ├── RemoteSearchExample │ │ │ ├── RemoteSearch.xaml │ │ │ └── RemoteSearch.xaml.cs │ │ ├── SuggestModeExample │ │ │ ├── SuggestMode.xaml │ │ │ └── SuggestMode.xaml.cs │ │ └── TokensExample │ │ │ ├── Tokens.xaml │ │ │ └── Tokens.xaml.cs │ ├── GettingStartedCategory │ │ └── GettingStartedExample │ │ │ ├── AutoCompleteGettingStartedCSharp.cs │ │ │ ├── AutoCompleteGettingStartedXaml.xaml │ │ │ └── AutoCompleteGettingStartedXaml.xaml.cs │ ├── Models │ │ ├── City.cs │ │ ├── Client.cs │ │ └── Person.cs │ ├── StylingCategory │ │ └── StylingExample │ │ │ ├── Styling.xaml │ │ │ └── Styling.xaml.cs │ ├── TemplatesCategory │ │ ├── SuggestionItemTemplateExample │ │ │ ├── SuggestionItemTemplate.xaml │ │ │ └── SuggestionItemTemplate.xaml.cs │ │ ├── SuggestionViewTemplateExample │ │ │ ├── SuggestionViewTemplate.xaml │ │ │ └── SuggestionViewTemplate.xaml.cs │ │ └── TokenShowMoreTemplateExample │ │ │ ├── TokenShowMoreTemplate.xaml │ │ │ └── TokenShowMoreTemplate.xaml.cs │ └── ViewModels │ │ ├── CityViewModel.cs │ │ ├── ClientsViewModel.cs │ │ ├── ExtendedClientsViewModel.cs │ │ ├── FilterViewModel.cs │ │ └── PeopleViewModel.cs ├── BadgeViewControl │ ├── FeaturesCategory │ │ ├── BadgeAlignPositionExample │ │ │ ├── BadgeAlignPosition.xaml │ │ │ └── BadgeAlignPosition.xaml.cs │ │ ├── BadgeAnimationExample │ │ │ ├── BadgeAnimation.xaml │ │ │ └── BadgeAnimation.xaml.cs │ │ ├── BadgeTypesExample │ │ │ ├── BadgeTypes.xaml │ │ │ └── BadgeTypes.xaml.cs │ │ ├── BadgeViewContentExample │ │ │ ├── BadgeViewContent.xaml │ │ │ └── BadgeViewContent.xaml.cs │ │ ├── ControlTemplateExample │ │ │ ├── ControlTemplate.xaml │ │ │ └── ControlTemplate.xaml.cs │ │ └── StylingExample │ │ │ ├── Styling.xaml │ │ │ └── Styling.xaml.cs │ └── GettingStartedCategory │ │ └── GettingStartedExample │ │ ├── BadgeViewGettingStartedCSharp.cs │ │ ├── BadgeViewGettingStartedXaml.xaml │ │ └── BadgeViewGettingStartedXaml.xaml.cs ├── BarCodeControl │ ├── DataMatrixCategory │ │ └── DataMatrixExample │ │ │ ├── DataMatrix.xaml │ │ │ └── DataMatrix.xaml.cs │ ├── FeaturesCategory │ │ └── KeyFeaturesExample │ │ │ ├── KeyFeatures.xaml │ │ │ └── KeyFeatures.xaml.cs │ ├── GettingStartedCategory │ │ └── GettingStartedExample │ │ │ ├── BarCodeGettingStartedXaml.xaml │ │ │ └── BarCodeGettingStartedXaml.xaml.cs │ ├── PDF417Category │ │ └── PDF417Example │ │ │ ├── PDF417.xaml │ │ │ └── PDF417.xaml.cs │ └── SwissQRCodeCategory │ │ └── SwissQRCodeExample │ │ ├── SwissQRCode.xaml │ │ └── SwissQRCode.xaml.cs ├── BorderControl │ ├── CornerRadiusCategory │ │ └── CornerRadiusExample │ │ │ ├── BorderCornerRadius.xaml │ │ │ └── BorderCornerRadius.xaml.cs │ ├── GettingStartedCategory │ │ └── GettingStartedExample │ │ │ ├── BorderGettingStartedXaml.xaml │ │ │ └── BorderGettingStartedXaml.xaml.cs │ └── StylingCategory │ │ └── StylingExample │ │ ├── Styling.xaml │ │ └── Styling.xaml.cs ├── BusyIndicator │ ├── AnimationsCategory │ │ ├── AnimationsExample │ │ │ ├── AnimationsXaml.xaml │ │ │ └── AnimationsXaml.xaml.cs │ │ └── CustomAnimationExample │ │ │ ├── CustomAnimationXaml.xaml │ │ │ └── CustomAnimationXaml.xaml.cs │ ├── CustomBusyContentCategory │ │ └── CustomBusyContentExample │ │ │ ├── CustomBusyContent.xaml │ │ │ └── CustomBusyContent.xaml.cs │ ├── GettingStartedCategory │ │ └── GettingStartedExample │ │ │ ├── BusyIndicatorGettingStartedXaml.xaml │ │ │ └── BusyIndicatorGettingStartedXaml.xaml.cs │ └── IntegrationCategory │ │ └── CollectionViewIntegrationExample │ │ ├── Book.cs │ │ ├── CollectionViewIntegration.xaml │ │ ├── CollectionViewIntegration.xaml.cs │ │ └── ViewModel.cs ├── ButtonControl │ ├── FeaturesCategory │ │ ├── CommandExample │ │ │ ├── ButtonCommand.xaml │ │ │ └── ButtonCommand.xaml.cs │ │ ├── ContentAlignmentExample │ │ │ ├── ContentAlignment.xaml │ │ │ └── ContentAlignment.xaml.cs │ │ ├── ImagesExample │ │ │ ├── Images.xaml │ │ │ └── Images.xaml.cs │ │ └── StylingExample │ │ │ ├── Styling.xaml │ │ │ └── Styling.xaml.cs │ └── GettingStartedCategory │ │ └── GettingStartedExample │ │ ├── ButtonGettingStartedXaml.xaml │ │ └── ButtonGettingStartedXaml.xaml.cs ├── CalendarControl │ ├── CommandsCategory │ │ └── NavigationCommandsExample │ │ │ ├── NavigationCommands.xaml │ │ │ └── NavigationCommands.xaml.cs │ ├── DisplayModeCategory │ │ ├── CenturyModeExample │ │ │ ├── CenturyMode.xaml │ │ │ └── CenturyMode.xaml.cs │ │ ├── DecadeModeExample │ │ │ ├── DecadeMode.xaml │ │ │ └── DecadeMode.xaml.cs │ │ ├── MinMaxDisplayModeExample │ │ │ ├── MinMaxDisplayMode.xaml │ │ │ └── MinMaxDisplayMode.xaml.cs │ │ ├── MonthModeExample │ │ │ ├── MonthMode.xaml │ │ │ └── MonthMode.xaml.cs │ │ └── YearModeExample │ │ │ ├── YearMode.xaml │ │ │ └── YearMode.xaml.cs │ ├── EventsCategory │ │ ├── DisplayDateChangedExample │ │ │ ├── DisplayDateChanged.xaml │ │ │ └── DisplayDateChanged.xaml.cs │ │ └── SelectionChangedExample │ │ │ ├── SelectionChanged.xaml │ │ │ └── SelectionChanged.xaml.cs │ ├── FeaturesCategory │ │ ├── BlackoutDatesExample │ │ │ ├── BlackoutDates.xaml │ │ │ ├── BlackoutDates.xaml.cs │ │ │ └── ViewModel.cs │ │ ├── CultureExample │ │ │ ├── Culture.xaml │ │ │ └── Culture.xaml.cs │ │ ├── DatePropertiesExample │ │ │ ├── DateProperties.xaml │ │ │ └── DateProperties.xaml.cs │ │ ├── DayNamesVisibilityExample │ │ │ ├── DayNamesVisibility.xaml │ │ │ └── DayNamesVisibility.xaml.cs │ │ ├── HeaderTextFormattingExample │ │ │ ├── HeaderTextFormatting.xaml │ │ │ └── HeaderTextFormatting.xaml.cs │ │ ├── InteractionModeExample │ │ │ ├── InteractionMode.xaml │ │ │ ├── InteractionMode.xaml.cs │ │ │ └── ViewModel.cs │ │ ├── NavigationExample │ │ │ ├── Navigation.xaml │ │ │ └── Navigation.xaml.cs │ │ └── OutOfScopeVisibilityExample │ │ │ ├── OutOfScopeVisibility.xaml │ │ │ └── OutOfScopeVisibility.xaml.cs │ ├── GettingStartedCategory │ │ └── GettingStartedExample │ │ │ ├── GettingStartedCSharp.cs │ │ │ ├── GettingStartedXaml.xaml │ │ │ └── GettingStartedXaml.xaml.cs │ ├── SelectionCategory │ │ ├── DisabledSelectionExample │ │ │ ├── DisabledSelection.xaml │ │ │ └── DisabledSelection.xaml.cs │ │ ├── MultipleSelectionExample │ │ │ ├── MultipleSelection.xaml │ │ │ └── MultipleSelection.xaml.cs │ │ ├── RangeSelectionExample │ │ │ ├── RangeSelection.xaml │ │ │ └── RangeSelection.xaml.cs │ │ ├── SelectedDatesExample │ │ │ ├── SelectedDates.xaml │ │ │ ├── SelectedDates.xaml.cs │ │ │ └── ViewModel.cs │ │ └── SingleSelectionExample │ │ │ ├── SingleSelection.xaml │ │ │ └── SingleSelection.xaml.cs │ ├── StyleSelectorsCategory │ │ ├── CustomCalendarStyleSelector.cs │ │ ├── DayStyleSelectorExample │ │ │ ├── DayStyleSelector.xaml │ │ │ └── DayStyleSelector.xaml.cs │ │ ├── DecadeStyleSelectorExample │ │ │ ├── DecadeStyleSelector.xaml │ │ │ └── DecadeStyleSelector.xaml.cs │ │ ├── MonthStyleSelectorExample │ │ │ ├── MonthStyleSelector.xaml │ │ │ └── MonthStyleSelector.xaml.cs │ │ └── YearStyleSelectorExample │ │ │ ├── YearStyleSelector.xaml │ │ │ └── YearStyleSelector.xaml.cs │ ├── StylingCategory │ │ ├── CalendarStylingExample │ │ │ ├── CalendarStyling.xaml │ │ │ └── CalendarStyling.xaml.cs │ │ ├── DayNamesStylingExample │ │ │ ├── DayNamesStyling.xaml │ │ │ └── DayNamesStyling.xaml.cs │ │ ├── HeaderButtonsStylingExample │ │ │ ├── HeaderButtonsStyling.xaml │ │ │ └── HeaderButtonsStyling.xaml.cs │ │ └── HeaderLabelStylingExample │ │ │ ├── HeaderLabelStyling.xaml │ │ │ └── HeaderLabelStyling.xaml.cs │ └── TemplatesCategory │ │ ├── DayTemplateExample │ │ ├── DayTemplate.xaml │ │ └── DayTemplate.xaml.cs │ │ ├── DecadeTemplateExample │ │ ├── DecadeTemplate.xaml │ │ └── DecadeTemplate.xaml.cs │ │ ├── MonthTemplateExample │ │ ├── MonthTemplate.xaml │ │ └── MonthTemplate.xaml.cs │ │ ├── TemplateSelectorExample │ │ ├── SpecialDayTemplateSelector.cs │ │ ├── TemplateSelector.xaml │ │ └── TemplateSelector.xaml.cs │ │ └── YearTemplateExmaple │ │ ├── YearTemplate.xaml │ │ └── YearTemplate.xaml.cs ├── ChartControl │ ├── FeaturesCategory │ │ └── NullValuesExample │ │ │ ├── NullValuesSupport.xaml │ │ │ ├── NullValuesSupport.xaml.cs │ │ │ └── ViewModel.cs │ ├── GettingStartedCategory │ │ └── GettingStartedExample │ │ │ ├── ChartGettingStartedXaml.xaml │ │ │ ├── ChartGettingStartedXaml.xaml.cs │ │ │ └── ViewModel.cs │ ├── LegendCategory │ │ ├── CartesianChartRadLegendExample │ │ │ ├── CartesianChartRadLegendXaml.xaml │ │ │ └── CartesianChartRadLegendXaml.xaml.cs │ │ ├── PieChartRadLegendExample │ │ │ ├── PieChartRadLegendXaml.xaml │ │ │ └── PieChartRadLegendXaml.xaml.cs │ │ └── ViewModel.cs │ ├── PieChartCategory │ │ ├── DonutSeriesExample │ │ │ ├── DonutSeriesXaml.xaml │ │ │ └── DonutSeriesXaml.xaml.cs │ │ ├── PieChartExample │ │ │ ├── PieChartXaml.xaml │ │ │ ├── PieChartXaml.xaml.cs │ │ │ └── ViewModel.cs │ │ └── PieChartPercentageExample │ │ │ ├── PercentageLabelFormatter.cs │ │ │ ├── PieChartPercentageXaml.xaml │ │ │ ├── PieChartPercentageXaml.xaml.cs │ │ │ └── ViewModel.cs │ └── SeriesCategory │ │ ├── AreaSeriesExample │ │ ├── AreaSeriesXaml.xaml │ │ └── AreaSeriesXaml.xaml.cs │ │ ├── BarSeriesHorizontalExample │ │ ├── BarSeriesHorizontalXaml.xaml │ │ └── BarSeriesHorizontalXaml.xaml.cs │ │ ├── BarSeriesVerticalExmaple │ │ ├── BarSeriesVerticalXaml.xaml │ │ └── BarSeriesVerticalXaml.xaml.cs │ │ ├── CandlestickSeriesExample │ │ ├── CandlestickSeriesExampleXaml.xaml │ │ └── CandlestickSeriesExampleXaml.xaml.cs │ │ ├── CategoricalDataViewModel.cs │ │ ├── CategoricalViewModel.cs │ │ ├── FinancialIndicatorsExample │ │ ├── FinancialIndicatorsExampleXaml.xaml │ │ ├── FinancialIndicatorsExampleXaml.xaml.cs │ │ └── ViewModel.cs │ │ ├── LineSeriesExample │ │ ├── LineSeriesXaml.xaml │ │ └── LineSeriesXaml.xaml.cs │ │ ├── NumericalViewModel.cs │ │ ├── OhlcSeriesExample │ │ ├── OhlcSeriesExampleXaml.xaml │ │ └── OhlcSeriesExampleXaml.xaml.cs │ │ ├── ScatterAreaSeriesExample │ │ ├── ScatterAreaSeriesXaml.xaml │ │ └── ScatterAreaSeriesXaml.xaml.cs │ │ ├── ScatterLineSeriesExample │ │ ├── ScatterLineSeriesXaml.xaml │ │ └── ScatterLineSeriesXaml.xaml.cs │ │ ├── ScatterPointSeriesExample │ │ ├── ScatterPointSeriesXaml.xaml │ │ └── ScatterPointSeriesXaml.xaml.cs │ │ ├── ScatterSplineAreaSeriesExample │ │ ├── ScatterSplineAreaSeriesXaml.xaml │ │ └── ScatterSplineAreaSeriesXaml.xaml.cs │ │ ├── ScatterSplineSeriesExample │ │ ├── ScatterSplineSeriesXaml.xaml │ │ └── ScatterSplineSeriesXaml.xaml.cs │ │ ├── SeriesCategoricalViewModel.cs │ │ ├── SeriesNumericalViewModel.cs │ │ ├── SeriesOhlcViewModel.cs │ │ ├── SplineAreaSeriesExample │ │ ├── SplineAreaSeriesXaml.xaml │ │ └── SplineAreaSeriesXaml.xaml.cs │ │ ├── SplineSeriesExample │ │ ├── SplineSeriesXaml.xaml │ │ └── SplineSeriesXaml.xaml.cs │ │ ├── StackAreaSeriesExample │ │ ├── StackAreaSeriesXaml.xaml │ │ └── StackAreaSeriesXaml.xaml.cs │ │ ├── StackBarSeriesHorizontalExample │ │ ├── StackBarSeriesHorizontalXaml.xaml │ │ └── StackBarSeriesHorizontalXaml.xaml.cs │ │ ├── StackBarSeriesVerticalExample │ │ ├── StackBarSeriesVerticalXaml.xaml │ │ └── StackBarSeriesVerticalXaml.xaml.cs │ │ └── StackSplineAreaSeriesExample │ │ ├── StackSplineAreaSeriesXaml.xaml │ │ └── StackSplineAreaSeriesXaml.xaml.cs ├── ChatControl │ ├── ChatPickersCategory │ │ ├── ChooseCardExample │ │ │ ├── ChooseCard.xaml │ │ │ └── ChooseCard.xaml.cs │ │ ├── ChooseDateExample │ │ │ ├── ChooseDate.xaml │ │ │ └── ChooseDate.xaml.cs │ │ ├── ChooseItemExample │ │ │ ├── ChooseItem.xaml │ │ │ └── ChooseItem.xaml.cs │ │ ├── ChooseTimeExample │ │ │ ├── ChooseTime.xaml │ │ │ └── ChooseTime.xaml.cs │ │ └── PickerInsideChatExample │ │ │ ├── PickerInsideChat.xaml │ │ │ └── PickerInsideChat.xaml.cs │ ├── FeaturesCategory │ │ ├── ChatItemsExample │ │ │ ├── ChatItems.xaml │ │ │ └── ChatItems.xaml.cs │ │ ├── CommandsExample │ │ │ ├── Commands.xaml │ │ │ ├── Commands.xaml.cs │ │ │ └── ViewModel.cs │ │ ├── CustomizationExample │ │ │ ├── Customization.xaml │ │ │ └── Customization.xaml.cs │ │ ├── DefaultTemplateSelectorExample │ │ │ ├── DefaultTemplateSelector.xaml │ │ │ └── DefaultTemplateSelector.xaml.cs │ │ ├── ItemTemplateSelectorExample │ │ │ ├── CustomChatItemTemplateSelector.cs │ │ │ ├── ItemTemplateSelector.xaml │ │ │ ├── ItemTemplateSelector.xaml.cs │ │ │ ├── SimpleChatItem.cs │ │ │ ├── SimpleChatItemConverter.cs │ │ │ └── ViewModel.cs │ │ ├── MVVMSupportExample │ │ │ ├── MVVMSupport.xaml │ │ │ ├── MVVMSupport.xaml.cs │ │ │ ├── SimpleChatItem.cs │ │ │ ├── SimpleChatItemConverter.cs │ │ │ └── ViewModel.cs │ │ ├── SuggestedActionsExample │ │ │ ├── SuggestedActions.xaml │ │ │ └── SuggestedActions.xaml.cs │ │ └── TypingIndicatorExample │ │ │ ├── ChatParticipantConverter.cs │ │ │ ├── Participant.cs │ │ │ ├── TypingIndicatorAuthors.xaml │ │ │ ├── TypingIndicatorAuthors.xaml.cs │ │ │ ├── TypingIndicatorItemsSource.xaml │ │ │ ├── TypingIndicatorItemsSource.xaml.cs │ │ │ └── ViewModel.cs │ └── GettingStartedCategory │ │ ├── GettingStartedExample │ │ ├── GettingStarted.xaml │ │ └── GettingStarted.xaml.cs │ │ └── RepeatBotService.cs ├── CheckBoxControl │ └── FeaturesCategory │ │ ├── AnimationExample │ │ ├── Animation.xaml │ │ └── Animation.xaml.cs │ │ ├── CheckBoxCommandExample │ │ ├── CheckBoxCommand.xaml │ │ ├── CheckBoxCommand.xaml.cs │ │ └── ViewModel.cs │ │ ├── ConfigurationExample │ │ ├── Configuration.xaml │ │ └── Configuration.xaml.cs │ │ ├── StylingExample │ │ ├── Styling.xaml │ │ └── Styling.xaml.cs │ │ └── ToggleOnTapExample │ │ ├── ToggleOnTap.xaml │ │ └── ToggleOnTap.xaml.cs ├── CheckboxControl │ └── GettingStartedCategory │ │ └── GettingStartedExample │ │ ├── CheckBoxGettingStartedXaml.xaml │ │ └── CheckboxGettingStartedXaml.xaml.cs ├── CollectionViewControl │ ├── CommandsCategory │ │ ├── GroupTappedCommandExample │ │ │ ├── GroupTappedCommand.xaml │ │ │ ├── GroupTappedCommand.xaml.cs │ │ │ ├── Person.cs │ │ │ └── ViewModel.cs │ │ └── ItemTappedCommandExample │ │ │ ├── CommandsViewModel.cs │ │ │ ├── ItemTappedCommand.xaml │ │ │ └── ItemTappedCommand.xaml.cs │ ├── DataModel.cs │ ├── DragAndDropCategory │ │ ├── DragAndDropBetweenCVsExample │ │ │ ├── DragAndDrop.xaml │ │ │ ├── DragAndDrop.xaml.cs │ │ │ └── ViewModel.cs │ │ ├── DragDropItemsExample │ │ │ ├── ReorderItems.xaml │ │ │ └── ReorderItems.xaml.cs │ │ ├── DragDropTemplatesExample │ │ │ ├── DragDropTemplates.xaml │ │ │ └── DragDropTemplates.xaml.cs │ │ ├── DragDropWithGroupingExample │ │ │ ├── CustomDragDropBehavior.cs │ │ │ ├── DragDropWithGrouping.xaml │ │ │ └── DragDropWithGrouping.xaml.cs │ │ └── DropIndicatorExample │ │ │ ├── DropIndicatorStyling.xaml │ │ │ └── DropIndicatorStyling.xaml.cs │ ├── EmptyTemplateCategory │ │ └── EmptyTemplateExample │ │ │ ├── EmptyTemplate.xaml │ │ │ └── EmptyTemplate.xaml.cs │ ├── EventsCategory │ │ ├── GroupTappedExample │ │ │ ├── GroupTapped.xaml │ │ │ └── GroupTapped.xaml.cs │ │ ├── ItemTappedExample │ │ │ ├── ItemTapped.xaml │ │ │ └── ItemTapped.xaml.cs │ │ └── ScrolledExample │ │ │ ├── Scrolled.xaml │ │ │ └── Scrolled.xaml.cs │ ├── FilteringCategory │ │ └── FilterDescriptorExample │ │ │ ├── FilterDescriptor.xaml │ │ │ └── FilterDescriptor.xaml.cs │ ├── GettingStartedCategory │ │ └── GettingStartedExample │ │ │ ├── CollectionViewGettingStartedCSharp.cs │ │ │ ├── CollectionViewGettingStartedXaml.xaml │ │ │ └── CollectionViewGettingStartedXaml.xaml.cs │ ├── GroupingCategory │ │ ├── DelegateGroupExample │ │ │ ├── DelegateGroup.xaml │ │ │ └── DelegateGroup.xaml.cs │ │ ├── ExpandCollapseExample │ │ │ ├── ExpandCollapse.xaml │ │ │ └── ExpandCollapse.xaml.cs │ │ ├── GroupHeaderTemplateExample │ │ │ ├── GroupHeaderTemplate.xaml │ │ │ └── GroupHeaderTemplate.xaml.cs │ │ ├── MultiLevelGroupingExample │ │ │ ├── MultiLevelGrouping.xaml │ │ │ └── MultiLevelGrouping.xaml.cs │ │ └── PropertyGroupExample │ │ │ ├── PropertyGroup.xaml │ │ │ └── PropertyGroup.xaml.cs │ ├── HeaderAndFooterCategory │ │ └── HeaderAndFooterExample │ │ │ ├── HeaderAndFooter.xaml │ │ │ └── HeaderAndFooter.xaml.cs │ ├── ItemSwipeCategory │ │ ├── DataModel.cs │ │ ├── ItemSwipeExample │ │ │ ├── ItemSwipe.xaml │ │ │ └── ItemSwipe.xaml.cs │ │ ├── SwipeCommandsExample │ │ │ ├── SwipeCommands.xaml │ │ │ ├── SwipeCommands.xaml.cs │ │ │ └── ViewModel.cs │ │ ├── SwipeEventsExample │ │ │ ├── SwipeEvents.xaml │ │ │ └── SwipeEvents.xaml.cs │ │ └── ViewModel.cs │ ├── LayoutsCategory │ │ ├── GridLayoutExample │ │ │ ├── GridLayout.xaml │ │ │ └── GridLayout.xaml.cs │ │ └── LinearLayoutExample │ │ │ ├── LinearLayout.xaml │ │ │ └── LinearLayout.xaml.cs │ ├── LoadOnDemandCategory │ │ ├── AutomaticLoadOnDemandCustomTemplateExample │ │ │ ├── AutomaticLoadOnDemandCustomTemplate.xaml │ │ │ └── AutomaticLoadOnDemandCustomTemplate.xaml.cs │ │ ├── LoadOnDemandCollectionExample │ │ │ ├── LoadOnDemandCollection.xaml │ │ │ ├── LoadOnDemandCollection.xaml.cs │ │ │ └── LoadOnDemandCollectionViewModel.cs │ │ ├── LoadOnDemandCommandExample │ │ │ ├── LoadOnDemandCommand.xaml │ │ │ ├── LoadOnDemandCommand.xaml.cs │ │ │ └── LoadOnDemandCommandViewModel.cs │ │ ├── LoadOnDemandEventExample │ │ │ ├── LoadOnDemandEvent.xaml │ │ │ └── LoadOnDemandEvent.xaml.cs │ │ └── ManualLoadOnDemandCustomTemplateExample │ │ │ ├── ManualLoadOnDemandCustomTemplate.xaml │ │ │ └── ManualLoadOnDemandCustomTemplate.xaml.cs │ ├── PullToRefreshCategory │ │ └── PullToRefreshExample │ │ │ ├── PullToRefresh.xaml │ │ │ ├── PullToRefresh.xaml.cs │ │ │ └── ViewModel.cs │ ├── ScrollingCategory │ │ └── ProgrammaticScrollingExample │ │ │ ├── ProgrammaticScrolling.xaml │ │ │ └── ProgrammaticScrolling.xaml.cs │ ├── SelectionCategory │ │ ├── DisabledSelectionExample │ │ │ ├── DisabledSelection.xaml │ │ │ └── DisabledSelection.xaml.cs │ │ ├── MultipleSelectionExample │ │ │ ├── MultipleSelection.xaml │ │ │ └── MultipleSelection.xaml.cs │ │ ├── SelectedItemExample │ │ │ ├── SelectedItem.xaml │ │ │ └── SelectedItem.xaml.cs │ │ └── ViewModel.cs │ ├── SortingCategory │ │ └── PropertySortDescriptorExample │ │ │ ├── PropertySortDescriptor.xaml │ │ │ └── PropertySortDescriptor.xaml.cs │ ├── StylingCategory │ │ ├── GroupStyleSelectorExample │ │ │ ├── GroupStyleSelector.xaml │ │ │ ├── GroupStyleSelector.xaml.cs │ │ │ └── MyGroupStyleSelector.cs │ │ ├── GroupStylingExample │ │ │ ├── GroupStyling.xaml │ │ │ └── GroupStyling.xaml.cs │ │ ├── ItemStyleExample │ │ │ ├── ItemStyle.xaml │ │ │ └── ItemStyle.xaml.cs │ │ └── ItemStyleSelectorExample │ │ │ ├── CityStyleSelector.cs │ │ │ ├── ItemStyleSelector.xaml │ │ │ └── ItemStyleSelector.xaml.cs │ └── ViewModel.cs ├── ComboBoxControl │ ├── City.cs │ ├── CommandsCategory │ │ ├── ClearSelectionExample │ │ │ ├── ClearSelectionCommand.xaml │ │ │ └── ClearSelectionCommand.xaml.cs │ │ └── RemoveTokenExample │ │ │ ├── CustomComboBoxRemoveTokenCommand.cs │ │ │ ├── RemoveTokenCommand.xaml │ │ │ └── RemoveTokenCommand.xaml.cs │ ├── FeaturesCategory │ │ ├── ConfigurationExample │ │ │ ├── ConfigurationSettings.xaml │ │ │ └── ConfigurationSettings.xaml.cs │ │ ├── DropDownConfigurationExample │ │ │ ├── DropDownConfiguration.xaml │ │ │ └── DropDownConfiguration.xaml.cs │ │ └── SearchExample │ │ │ ├── Search.xaml │ │ │ └── Search.xaml.cs │ ├── FilteringCategory │ │ ├── CustomFilteringExample │ │ │ ├── CustomFiltering.xaml │ │ │ ├── CustomFiltering.xaml.cs │ │ │ └── CustomFilteringBehavior.cs │ │ └── FilteringExample │ │ │ ├── Filtering.xaml │ │ │ └── Filtering.xaml.cs │ ├── GettingStartedCategory │ │ └── GettingStartedExample │ │ │ ├── ComboBoxGettingStartedXaml.xaml │ │ │ └── ComboBoxGettingStartedXaml.xaml.cs │ ├── SelectionCategory │ │ ├── MultipleSelectionExample │ │ │ ├── MultipleSelection.xaml │ │ │ ├── MultipleSelection.xaml.cs │ │ │ └── ViewModel.cs │ │ └── SingleSelectionExample │ │ │ ├── SingleSelection.xaml │ │ │ ├── SingleSelection.xaml.cs │ │ │ └── ViewModel.cs │ ├── StylingCategory │ │ ├── ComboBoxStylingExample │ │ │ ├── ComboBoxStyling.xaml │ │ │ └── ComboBoxStyling.xaml.cs │ │ └── DropDownStylingExample │ │ │ ├── DropDownStyling.xaml │ │ │ └── DropDownStyling.xaml.cs │ ├── TemplatesCategory │ │ ├── HeaderFooterExample │ │ │ ├── HeaderFooter.xaml │ │ │ └── HeaderFooter.xaml.cs │ │ ├── ItemSelectedItemTemplatesExample │ │ │ ├── ItemSelectedItemTemplates.xaml │ │ │ └── ItemSelectedItemTemplates.xaml.cs │ │ └── TokenTemplateExample │ │ │ ├── TokenTemplate.xaml │ │ │ └── TokenTemplate.xaml.cs │ └── ViewModel.cs ├── DataFormControl │ ├── CommitCategory │ │ └── CommitModeExample │ │ │ ├── CommitMode.xaml │ │ │ └── CommitMode.xaml.cs │ ├── EditorsCategory │ │ ├── CustomEditorExample │ │ │ ├── CustomEditor.xaml │ │ │ ├── CustomEditor.xaml.cs │ │ │ └── CustomEditorViewModel.cs │ │ ├── DataTypeEditorsExample │ │ │ ├── DataTypeEditors.xaml │ │ │ ├── DataTypeEditors.xaml.cs │ │ │ └── DataTypeEditorsModel.cs │ │ ├── EditorsExample │ │ │ ├── Editors.xaml │ │ │ ├── Editors.xaml.cs │ │ │ └── EditorsViewModel.cs │ │ └── EditorsHeaderConfigurationExample │ │ │ ├── EditorsHeaderConfiguration.xaml │ │ │ └── EditorsHeaderConfiguration.xaml.cs │ ├── EventsCategory │ │ └── EventsExample │ │ │ ├── Events.xaml │ │ │ └── Events.xaml.cs │ ├── GettingStartedCategory │ │ ├── CustomGenerateExample │ │ │ ├── CustomGenerate.xaml │ │ │ ├── CustomGenerate.xaml.cs │ │ │ └── CustomGenerateViewModel.cs │ │ ├── GettingStartedExample │ │ │ ├── GettingStartedCSharp.cs │ │ │ ├── GettingStartedXaml.xaml │ │ │ └── GettingStartedXaml.xaml.cs │ │ └── GettingStartedModel.cs │ ├── GroupingCategory │ │ ├── GroupingExample │ │ │ ├── Grouping.xaml │ │ │ ├── Grouping.xaml.cs │ │ │ └── GroupingModel.cs │ │ └── GroupsConfigurationExample │ │ │ ├── GroupsConfiguration.xaml │ │ │ └── GroupsConfiguration.xaml.cs │ ├── LayoutsCategory │ │ ├── GridLayoutExample │ │ │ ├── GridLayout.xaml │ │ │ └── GridLayout.xaml.cs │ │ └── VerticalStackLayoutExample │ │ │ ├── VerticalStackLayout.xaml │ │ │ └── VerticalStackLayout.xaml.cs │ ├── StylingCategory │ │ ├── DataFormStylingExample │ │ │ ├── DataFormStylingExample.xaml │ │ │ └── DataFormStylingExample.xaml.cs │ │ ├── EditorsStylingExample │ │ │ ├── EditorsStylingExample.xaml │ │ │ └── EditorsStylingExample.xaml.cs │ │ ├── ErrorMessageStylingExample │ │ │ ├── ErrorMessageStylingExample.xaml │ │ │ └── ErrorMessageStylingExample.xaml.cs │ │ ├── GroupStylingExample │ │ │ ├── GroupStylingExample.xaml │ │ │ └── GroupStylingExample.xaml.cs │ │ ├── HeaderStylingExample │ │ │ ├── HeaderStylingExample.xaml │ │ │ └── HeaderStylingExample.xaml.cs │ │ └── ValidationStylingExample │ │ │ ├── ValidationStylingExample.xaml │ │ │ └── ValidationStylingExample.xaml.cs │ └── ValidationCategory │ │ ├── ManualValidationExample │ │ ├── ManualValidation.xaml │ │ └── ManualValidation.xaml.cs │ │ └── ValidationConfigurationExample │ │ ├── ValidationConfiguration.xaml │ │ └── ValidationConfiguration.xaml.cs ├── DataGridControl │ ├── AggregatesCategory │ │ ├── Data.cs │ │ ├── DelegateAggregateDescriptorsExample │ │ │ ├── DelegateAggregateDescriptors.xaml │ │ │ └── DelegateAggregateDescriptors.xaml.cs │ │ ├── GroupFooterAggregateStyleExample │ │ │ ├── GroupFooterAggregateStyle.xaml │ │ │ └── GroupFooterAggregateStyle.xaml.cs │ │ ├── GroupHeaderAggregateStyleExample │ │ │ ├── GroupHeaderAggregateStyle.xaml │ │ │ └── GroupHeaderAggregateStyle.xaml.cs │ │ ├── GroupHeaderAggregateStyleSelectorExample │ │ │ ├── CustomGroupHeaderAggregateStyleSelector.cs │ │ │ ├── GroupHeaderAggregateStyleSelector.xaml │ │ │ └── GroupHeaderAggregateStyleSelector.xaml.cs │ │ ├── PropertyAggregateDescriptorsExample │ │ │ ├── PropertyAggregateDescriptors.xaml │ │ │ └── PropertyAggregateDescriptors.xaml.cs │ │ └── ViewModel.cs │ ├── CellsCategory │ │ └── MouseHoverCellExample │ │ │ ├── MouseHoverCell.xaml │ │ │ └── MouseHoverCell.xaml.cs │ ├── ColumnsCategory │ │ ├── CellContentTemplateExample │ │ │ ├── CellContentTemplate.xaml │ │ │ └── CellContentTemplate.xaml.cs │ │ ├── CellEditTemplateExample │ │ │ ├── CellEditTemplate.xaml │ │ │ └── CellEditTemplate.xaml.cs │ │ ├── CellRendererExample │ │ │ ├── CustomColumnRenderer.cs │ │ │ ├── SkiaCellRenderer.xaml │ │ │ └── SkiaCellRenderer.xaml.cs │ │ ├── Club.cs │ │ ├── ColumnsExample │ │ │ ├── Columns.xaml │ │ │ └── Columns.xaml.cs │ │ ├── DragTemplatesExample │ │ │ ├── DragTemplates.xaml │ │ │ └── DragTemplates.xaml.cs │ │ ├── FrozenColumnsExample │ │ │ ├── FrozenColumns.xaml │ │ │ └── FrozenColumns.xaml.cs │ │ ├── HeaderFooterContentTemplateExample │ │ │ ├── Data.cs │ │ │ ├── HeaderFooterContentTemplate.xaml │ │ │ └── HeaderFooterContentTemplate.xaml.cs │ │ ├── ReorderingExample │ │ │ ├── PersonDetails.cs │ │ │ ├── Reordering.xaml │ │ │ ├── Reordering.xaml.cs │ │ │ └── ViewModel.cs │ │ ├── ResizingExample │ │ │ ├── Resizing.xaml │ │ │ └── Resizing.xaml.cs │ │ └── ViewModel.cs │ ├── CommandsCategory │ │ ├── CommandsExample │ │ │ ├── CellTapUserCommand.cs │ │ │ ├── Commands.xaml │ │ │ ├── Commands.xaml.cs │ │ │ └── Country.cs │ │ ├── EditingExample │ │ │ ├── BeginEditCommand.cs │ │ │ ├── CommitEditCommand.cs │ │ │ ├── Data.cs │ │ │ ├── Editing.xaml │ │ │ ├── Editing.xaml.cs │ │ │ └── ViewModel.cs │ │ └── ValidationExample │ │ │ ├── Data.cs │ │ │ ├── ValidateCellCommand.cs │ │ │ ├── Validation.xaml │ │ │ ├── Validation.xaml.cs │ │ │ └── ViewModel.cs │ ├── DataTableCategory │ │ ├── BindToDataTableExample │ │ │ ├── BindToDataTable.xaml │ │ │ └── BindToDataTable.xaml.cs │ │ ├── CRUDOperationsExample │ │ │ ├── CRUDOperations.xaml │ │ │ └── CRUDOperations.xaml.cs │ │ ├── CommandsExample │ │ │ ├── Commands.xaml │ │ │ └── Commands.xaml.cs │ │ └── DataTableViewModel.cs │ ├── DecorationsCategory │ │ └── GridLinesExample │ │ │ ├── GridLines.xaml │ │ │ ├── GridLines.xaml.cs │ │ │ ├── StringToColorConverter.cs │ │ │ └── ViewModel.cs │ ├── DynamicDataCategory │ │ ├── DynamicObjectExample │ │ │ ├── DynamicObjectXaml.xaml │ │ │ ├── DynamicObjectXaml.xaml.cs │ │ │ ├── MyDynamicObject.cs │ │ │ └── ViewModel.cs │ │ └── ExpandoObjectExample │ │ │ ├── ExpandoObjectXaml.xaml │ │ │ ├── ExpandoObjectXaml.xaml.cs │ │ │ └── ViewModel.cs │ ├── EmptyTemplateCategory │ │ └── EmptyTemplateExample │ │ │ ├── EmptyTemplate.xaml │ │ │ └── EmptyTemplate.xaml.cs │ ├── FilteringCategory │ │ ├── City.cs │ │ ├── CustomFilterTemplateExample │ │ │ ├── CityFilterControl.xaml │ │ │ ├── CityFilterControl.xaml.cs │ │ │ ├── CustomFilterTemplate.xaml │ │ │ └── CustomFilterTemplate.xaml.cs │ │ ├── FilterControlTemplateExample │ │ │ ├── FilterControlTemplate.xaml │ │ │ └── FilterControlTemplate.xaml.cs │ │ ├── FilteringViewModel.cs │ │ └── ProgrammaticFilteringExample │ │ │ ├── ProgrammaticFiltering.xaml │ │ │ └── ProgrammaticFiltering.xaml.cs │ ├── Gender.cs │ ├── GettingStartedCategory │ │ └── GettingStartedExample │ │ │ ├── Data.cs │ │ │ ├── DataGridGettingStartedXaml.xaml │ │ │ └── DataGridGettingStartedXaml.xaml.cs │ ├── GroupingCategory │ │ ├── DelegateGroupDescriptorExample │ │ │ ├── DelegateGroupDescriptorGroups.xaml │ │ │ └── DelegateGroupDescriptorGroups.xaml.cs │ │ ├── GroupHeaderFrozenColumnExample │ │ │ ├── GroupHeaderFrozenColumn.xaml │ │ │ └── GroupHeaderFrozenColumn.xaml.cs │ │ ├── GroupHeaderStylingExample │ │ │ ├── GroupHeaderStyling.xaml │ │ │ └── GroupHeaderStyling.xaml.cs │ │ ├── GroupHeaderTemplateExample │ │ │ ├── CustomGroupHeaderTemplate.xaml │ │ │ └── CustomGroupHeaderTemplate.xaml.cs │ │ ├── Person.cs │ │ ├── ProgrammaticGroupingExample │ │ │ ├── ProgrammaticGrouping.xaml │ │ │ └── ProgrammaticGrouping.xaml.cs │ │ ├── PropertyGroupDescriptorExample │ │ │ ├── PropertyGroupDescriptor.xaml │ │ │ └── PropertyGroupDescriptor.xaml.cs │ │ └── ViewModel.cs │ ├── KeyboadNavigationCategory │ │ └── KeyboardNavigationExample │ │ │ ├── KeyboardNavigation.xaml │ │ │ ├── KeyboardNavigation.xaml.cs │ │ │ ├── Person.cs │ │ │ └── ViewModel.cs │ ├── LoadOnDemandCategory │ │ ├── LoadMoreDataCommandExample │ │ │ ├── CustomLoadMoreDataCommand.cs │ │ │ ├── LoadMoreDataCommand.xaml │ │ │ ├── LoadMoreDataCommand.xaml.cs │ │ │ └── LoadMoreDataCommandViewModel.cs │ │ ├── LoadOnDemandAutoTemplateExample │ │ │ ├── LoadOnDemandAutoTemplate.xaml │ │ │ ├── LoadOnDemandAutoTemplate.xaml.cs │ │ │ └── LoadOnDemandAutoTemplateViewModel.cs │ │ ├── LoadOnDemandEventExample │ │ │ ├── LoadOnDemandEvent.xaml │ │ │ ├── LoadOnDemandEvent.xaml.cs │ │ │ └── LoadOnDemandEventViewModel.cs │ │ ├── LoadOnDemandExample │ │ │ ├── LoadOnDemand.xaml │ │ │ ├── LoadOnDemand.xaml.cs │ │ │ └── LoadOnDemandViewModel.cs │ │ ├── LoadOnDemandRowStyleExample │ │ │ ├── LoadOnDemandRowStyle.xaml │ │ │ ├── LoadOnDemandRowStyle.xaml.cs │ │ │ └── LoadOnDemandRowStyleViewModel.cs │ │ └── LoadOnDemandRowTemplateExample │ │ │ ├── LoadOnDemandRowTemplate.xaml │ │ │ ├── LoadOnDemandRowTemplate.xaml.cs │ │ │ └── LoadOnDemandRowTemplateViewModel.cs │ ├── LocalizationCategory │ │ ├── City.cs │ │ ├── CustomLocalizationExample │ │ │ ├── CustomLocalization.xaml │ │ │ └── CustomLocalization.xaml.cs │ │ └── LocalizationViewModel.cs │ ├── NestedPropertyCategory │ │ └── NestedPropertyExample │ │ │ ├── Address.cs │ │ │ ├── NestedProperty.xaml │ │ │ ├── NestedProperty.xaml.cs │ │ │ ├── Person.cs │ │ │ └── ViewModel.cs │ ├── Person.cs │ ├── RenderModeCategory │ │ └── SkiaRenderingExample │ │ │ ├── SkiaRendering.xaml │ │ │ └── SkiaRendering.xaml.cs │ ├── RowDetailsCategory │ │ └── RowDetailsExample │ │ │ ├── RowDetails.xaml │ │ │ └── RowDetails.xaml.cs │ ├── SearchCategory │ │ ├── Person.cs │ │ ├── SearchAsYouTypeExample │ │ │ ├── SearchAsYouType.xaml │ │ │ └── SearchAsYouType.xaml.cs │ │ ├── SearchHighlightingExample │ │ │ ├── SearchHighlighting.xaml │ │ │ └── SearchHighlighting.xaml.cs │ │ ├── SearchStartingExample │ │ │ ├── SearchStarting.xaml │ │ │ └── SearchStarting.xaml.cs │ │ └── ViewModel.cs │ ├── SelectionCategory │ │ ├── Person.cs │ │ ├── ProgrammaticSelectionExample │ │ │ ├── ProgrammaticSelection.xaml │ │ │ └── ProgrammaticSelection.xaml.cs │ │ ├── UISelectionExample │ │ │ ├── GridUISelection.xaml │ │ │ └── GridUISelection.xaml.cs │ │ └── ViewModel.cs │ ├── SortingCategory │ │ └── ProgrammaticSortingExample │ │ │ ├── Country.cs │ │ │ ├── ProgrammaticSorting.xaml │ │ │ └── ProgrammaticSorting.xaml.cs │ └── StylingCategory │ │ ├── ColumnsStylingExample │ │ ├── ColumnsStyling.xaml │ │ ├── ColumnsStyling.xaml.cs │ │ └── Data.cs │ │ ├── DataGridStylingExample │ │ ├── Data.cs │ │ ├── DataGridStyling.xaml │ │ └── DataGridStyling.xaml.cs │ │ ├── RowBackgroundStyleSelectorExample │ │ ├── MyData.cs │ │ ├── MyRowBackgroundStyleSelector.cs │ │ ├── StyleSelector.xaml │ │ ├── StyleSelector.xaml.cs │ │ └── ViewModel.cs │ │ └── StyleSelectorExample │ │ ├── Data.cs │ │ ├── MyCellContentSelector.cs │ │ ├── MyCellDecorationSelector.cs │ │ ├── MyGroupSelector.cs │ │ ├── StyleSelector.xaml │ │ └── StyleSelector.xaml.cs ├── DataPagerControl │ ├── FeaturesCategory │ │ ├── DisplayModeExample │ │ │ ├── DisplayMode.xaml │ │ │ └── DisplayMode.xaml.cs │ │ ├── EllipsisModeExample │ │ │ ├── EllipsisMode.xaml │ │ │ └── EllipsisMode.xaml.cs │ │ ├── PageConfigurationExample │ │ │ ├── PageConfiguration.xaml │ │ │ └── PageConfiguration.xaml.cs │ │ └── ViewModel.cs │ ├── GettingStartedCategory │ │ └── GettingStartedExample │ │ │ ├── DataPagerGettingStartedCSharp.cs │ │ │ ├── DataPagerGettingStartedXaml.xaml │ │ │ └── DataPagerGettingStartedXaml.xaml.cs │ ├── IntegrationCategory │ │ ├── Data.cs │ │ ├── IntegrationCollectionViewExample │ │ │ ├── IntegrationCollectionView.xaml │ │ │ └── IntegrationCollectionView.xaml.cs │ │ ├── IntegrationDataGridExample │ │ │ ├── IntegrationDataGrid.xaml │ │ │ └── IntegrationDataGrid.xaml.cs │ │ ├── IntegrationRadCollectionViewExample │ │ │ ├── IntegrationRadCollectionView.xaml │ │ │ └── IntegrationRadCollectionView.xaml.cs │ │ ├── IntegrationTreeDataGridExample │ │ │ ├── IntegrationTreeDataGrid.xaml │ │ │ └── IntegrationTreeDataGrid.xaml.cs │ │ └── ViewModel.cs │ └── StylingCategory │ │ └── ButtonsExample │ │ ├── Buttons.xaml │ │ └── Buttons.xaml.cs ├── DatePickerControl │ ├── DateOnlySupportCategory │ │ └── DateOnlySupportExample │ │ │ ├── DateOnlySupport.xaml │ │ │ ├── DateOnlySupport.xaml.cs │ │ │ └── ViewModel.cs │ ├── DatePropertiesCategory │ │ └── DatePropertiesExample │ │ │ ├── DateProperties.xaml │ │ │ └── DateProperties.xaml.cs │ ├── GettingStartedCategory │ │ └── GettingStartedExample │ │ │ ├── DatePickerGettingStartedCSharp.cs │ │ │ ├── DatePickerGettingStartedXaml.xaml │ │ │ └── DatePickerGettingStartedXaml.xaml.cs │ ├── StylingCategory │ │ ├── DropDownStylingExample │ │ │ ├── DropDownStyling.xaml │ │ │ └── DropDownStyling.xaml.cs │ │ ├── PopupStylingExample │ │ │ ├── PopupStyling.xaml │ │ │ └── PopupStyling.xaml.cs │ │ └── StylingExample │ │ │ ├── Styling.xaml │ │ │ └── Styling.xaml.cs │ └── TemplatesCategory │ │ ├── CustomTemplatesExample │ │ ├── CustomTemplates.xaml │ │ └── CustomTemplates.xaml.cs │ │ └── DefaultTemplatesExample │ │ ├── DefaultTemplates.xaml │ │ └── DefaultTemplates.xaml.cs ├── DateTimePickerControl │ ├── FeaturesCategory │ │ ├── CustomTemplateExample │ │ │ ├── CustomTemplateXaml.xaml │ │ │ └── CustomTemplateXaml.xaml.cs │ │ ├── KeyFeaturesExample │ │ │ ├── KeyFeaturesXaml.xaml │ │ │ └── KeyFeaturesXaml.xaml.cs │ │ └── LocalizationExample │ │ │ ├── CustomDateTimePickerLocalizationManager.cs │ │ │ ├── Localization.xaml │ │ │ └── Localization.xaml.cs │ ├── GettingStartedCategory │ │ └── GettingStartedExample │ │ │ ├── DateTimePickerGettingStartedXaml.xaml │ │ │ └── DateTimePickerGettingStartedXaml.xaml.cs │ └── StylingCategory │ │ ├── DropDownStylingExample │ │ ├── DropDownStyling.xaml │ │ └── DropDownStyling.xaml.cs │ │ ├── PopupStylingExample │ │ ├── PopupStyling.xaml │ │ └── PopupStyling.xaml.cs │ │ └── StylingExample │ │ ├── Styling.xaml │ │ └── Styling.xaml.cs ├── DockLayoutControl │ ├── DockingFunctionalityCategory │ │ ├── DockingFeatureExample │ │ │ ├── DockingFeature.xaml │ │ │ └── DockingFeature.xaml.cs │ │ ├── PositionElementsOneSideExample │ │ │ ├── PositionElementsOneSide.xaml │ │ │ └── PositionElementsOneSide.xaml.cs │ │ └── PositionLastChildExample │ │ │ ├── PositionLastChild.xaml │ │ │ └── PositionLastChild.xaml.cs │ └── GettingStartedCategory │ │ └── GettingStartedExample │ │ ├── DockLayoutGettingStartedXaml.xaml │ │ └── DockLayoutGettingStartedXaml.xaml.cs ├── EntryControl │ ├── GettingStartedCategory │ │ └── GettingStartedExample │ │ │ ├── EntryGettingStarted.xaml │ │ │ └── EntryGettingStarted.xaml.cs │ └── StylingCategory │ │ └── StylingExample │ │ ├── Styling.xaml │ │ └── Styling.xaml.cs ├── ExpanderControl │ ├── FeaturesCategory │ │ ├── CustomExpanderHeaderExample │ │ │ ├── CustomExpanderHeader.xaml │ │ │ └── CustomExpanderHeader.xaml.cs │ │ ├── ExpanderLocationExample │ │ │ ├── ExpanderHeaderLocation.xaml │ │ │ └── ExpanderHeaderLocation.xaml.cs │ │ └── StylingExample │ │ │ ├── Styling.xaml │ │ │ └── Styling.xaml.cs │ └── GettingStartedGategory │ │ └── GettingStartedExample │ │ ├── ExpanderGettingStartedCSharp.cs │ │ ├── ExpanderGettingStartedXaml.xaml │ │ └── ExpanderGettingStartedXaml.xaml.cs ├── GaugeControl │ ├── GaugeTypesCategory │ │ ├── HorizontalGaugeExample │ │ │ ├── HorizontalGauge.xaml │ │ │ └── HorizontalGauge.xaml.cs │ │ ├── RadialGaugeExample │ │ │ ├── RadialGauge.xaml │ │ │ └── RadialGauge.xaml.cs │ │ └── VerticalGaugeExample │ │ │ ├── VerticalGauge.xaml │ │ │ └── VerticalGauge.xaml.cs │ └── GettingStartedCategory │ │ └── GettingStartedExample │ │ ├── GaugeGettingStartedXaml.xaml │ │ └── GaugeGettingStartedXaml.xaml.cs ├── GridSplitterControl │ ├── FeaturesCategory │ │ ├── GripperStylingExample │ │ │ ├── GripperStyling.xaml │ │ │ └── GripperStyling.xaml.cs │ │ └── ResizeConfigurationExample │ │ │ ├── ResizeConfiguration.xaml │ │ │ └── ResizeConfiguration.xaml.cs │ └── GettingStartedCategory │ │ └── GettingStartedExample │ │ ├── GridSplitterGettingStarted.xaml │ │ └── GridSplitterGettingStarted.xaml.cs ├── ImageEditorControl │ ├── FeaturesCategory │ │ ├── BusyTemplateExample │ │ │ ├── BusyTemplate.xaml │ │ │ └── BusyTemplate.xaml.cs │ │ ├── CommandsExample │ │ │ ├── Commands.xaml │ │ │ └── Commands.xaml.cs │ │ ├── SaveImageExample │ │ │ ├── SaveImage.xaml │ │ │ └── SaveImage.xaml.cs │ │ └── ZoomLevelExample │ │ │ ├── ZoomLevel.xaml │ │ │ └── ZoomLevel.xaml.cs │ ├── GettingStartedCategory │ │ └── GettingStartedExample │ │ │ ├── ImageEditorGettingStartedCSharp.cs │ │ │ ├── ImageEditorGettingStartedXaml.xaml │ │ │ └── ImageEditorGettingStartedXaml.xaml.cs │ ├── ToolbarCategory │ │ ├── CustomCropToolbarExample │ │ │ ├── CustomCropToolbar.xaml │ │ │ └── CustomCropToolbar.xaml.cs │ │ ├── CustomToolbarExample │ │ │ ├── CustomToolbar.xaml │ │ │ └── CustomToolbar.xaml.cs │ │ └── StylingExample │ │ │ ├── Styling.xaml │ │ │ └── Styling.xaml.cs │ └── imageavatar.png ├── ItemsControlControl │ └── GettingStartedCategory │ │ └── GettingStartedExample │ │ ├── ItemsControlGettingStartedXaml.xaml │ │ ├── ItemsControlGettingStartedXaml.xaml.cs │ │ └── ViewModel.cs ├── ListPickerControl │ ├── CitiesViewModel.cs │ ├── City.cs │ ├── GettingStartedCategory │ │ └── GettingStartedExample │ │ │ ├── ListPickerGettingStartedCSharp.cs │ │ │ ├── ListPickerGettingStartedXaml.xaml │ │ │ └── ListPickerGettingStartedXaml.xaml.cs │ ├── LoopingCategory │ │ └── LoopingExample │ │ │ ├── Looping.xaml │ │ │ └── Looping.xaml.cs │ ├── PeopleViewModel.cs │ ├── Person.cs │ ├── StylingCategory │ │ ├── DropDownStylingExample │ │ │ ├── DropDownStyling.xaml │ │ │ └── DropDownStyling.xaml.cs │ │ ├── PopupStylingExample │ │ │ ├── PopupStyling.xaml │ │ │ └── PopupStyling.xaml.cs │ │ └── StylingExample │ │ │ ├── Styling.xaml │ │ │ └── Styling.xaml.cs │ └── TemplatesCategory │ │ └── CustomTemplatesExample │ │ ├── CustomTemplates.xaml │ │ └── CustomTemplates.xaml.cs ├── ListViewControl │ ├── CellSwipeCategory │ │ ├── InteractiveContentExample │ │ │ ├── InteractiveContent.xaml │ │ │ ├── InteractiveContent.xaml.cs │ │ │ └── ViewModel.cs │ │ └── SwipeEventsExample │ │ │ ├── SwipeEvents.xaml │ │ │ ├── SwipeEvents.xaml.cs │ │ │ └── ViewModel.cs │ ├── CellTypesCategory │ │ ├── TemplateCellExample │ │ │ ├── ListViewTemplateCellXaml.xaml │ │ │ ├── ListViewTemplateCellXaml.xaml.cs │ │ │ └── ViewModel.cs │ │ ├── TemplateCellSelectorExample │ │ │ ├── CustomItemTemplateSelector.cs │ │ │ ├── TemplateCellSelector.xaml │ │ │ ├── TemplateCellSelector.xaml.cs │ │ │ └── ViewModel.cs │ │ └── TextCellExample │ │ │ ├── ListViewTextCellXaml.xaml │ │ │ ├── ListViewTextCellXaml.xaml.cs │ │ │ └── ViewModel.cs │ ├── CommandsCategory │ │ ├── ListViewCommandExample │ │ │ ├── InheritListViewCommand.xaml │ │ │ ├── InheritListViewCommand.xaml.cs │ │ │ └── ItemTappedUserCommand.cs │ │ ├── ListViewUserCommandExample │ │ │ ├── ListViewItemTapUserCommand.xaml │ │ │ └── ListViewItemTapUserCommand.xaml.cs │ │ └── ViewModel.cs │ ├── FilteringCategory │ │ ├── BindableFilterDescriptorExample │ │ │ ├── BindableFilterDescriptor.xaml │ │ │ ├── BindableFilterDescriptor.xaml.cs │ │ │ └── ViewModel.cs │ │ └── FilterDescriptorExample │ │ │ ├── FilterDescriptor.xaml │ │ │ ├── FilterDescriptor.xaml.cs │ │ │ └── ViewModel.cs │ ├── GettingStartedCategory │ │ └── GettingStartedExample │ │ │ ├── ListViewGettingStartedXaml.xaml │ │ │ ├── ListViewGettingStartedXaml.xaml.cs │ │ │ └── ViewModel.cs │ ├── GroupingCategory │ │ ├── BindableGroupDescriptorExample │ │ │ ├── BindablePropertyGrouping.xaml │ │ │ ├── BindablePropertyGrouping.xaml.cs │ │ │ └── ViewModel.cs │ │ ├── City.cs │ │ ├── DelegateGroupDescriptorExample │ │ │ ├── DelegateGrouping.xaml │ │ │ └── DelegateGrouping.xaml.cs │ │ ├── Event.cs │ │ ├── GroupingViewModel.cs │ │ ├── MultiLevelGroupingExample │ │ │ ├── LevelToMarginConverter.cs │ │ │ ├── MultiLevelGrouping.xaml │ │ │ └── MultiLevelGrouping.xaml.cs │ │ ├── PropertyGroupDescriptorExample │ │ │ ├── PropertyGrouping.xaml │ │ │ └── PropertyGrouping.xaml.cs │ │ └── ReorderInGroupedListViewExample │ │ │ ├── ReorderInGroupedListView.xaml │ │ │ ├── ReorderInGroupedListView.xaml.cs │ │ │ └── ViewModel.cs │ ├── HeaderAndFooterCategory │ │ └── HeaderAndFooterExample │ │ │ ├── HeaderAndFooter.xaml │ │ │ ├── HeaderAndFooter.xaml.cs │ │ │ └── HeaderAndFooterViewModel.cs │ ├── LayoutsCategory │ │ ├── GridLayoutExample │ │ │ ├── GridLayout.xaml │ │ │ └── GridLayout.xaml.cs │ │ ├── Item.cs │ │ ├── LinearLayoutExample │ │ │ ├── LinearLayout.xaml │ │ │ └── LinearLayout.xaml.cs │ │ └── ViewModel.cs │ ├── LoadOnDemandCategory │ │ ├── LoadOnDemandCollectionExample │ │ │ ├── LoadOnDemandCollection.xaml │ │ │ ├── LoadOnDemandCollection.xaml.cs │ │ │ └── ViewModel.cs │ │ ├── LoadOnDemandCommandExample │ │ │ ├── LoadOnDemandCommand.xaml │ │ │ ├── LoadOnDemandCommand.xaml.cs │ │ │ └── ViewModel.cs │ │ ├── LoadOnDemandEventExample │ │ │ ├── LoadOnDemandEvent.xaml │ │ │ └── LoadOnDemandEvent.xaml.cs │ │ └── LoadOnDemandTemplateExample │ │ │ ├── LoadOnDemandTemplate.xaml │ │ │ ├── LoadOnDemandTemplate.xaml.cs │ │ │ └── ViewModel.cs │ ├── PullToRefreshCategory │ │ └── PullToRefreshExample │ │ │ ├── PullToRefresh.xaml │ │ │ └── PullToRefresh.xaml.cs │ ├── ReorderItemsCategory │ │ └── ReorderItemsExample │ │ │ ├── ReorderItems.xaml │ │ │ └── ReorderItems.xaml.cs │ ├── ScrollingCategory │ │ └── ScrollingExample │ │ │ ├── ProgrammaticScrolling.xaml │ │ │ ├── ProgrammaticScrolling.xaml.cs │ │ │ └── ViewModel.cs │ ├── SelectionCategory │ │ └── SelectionExample │ │ │ ├── Selection.xaml │ │ │ ├── Selection.xaml.cs │ │ │ └── ViewModel.cs │ ├── SortingCategory │ │ ├── BindablePropertySortDescriptorExample │ │ │ ├── BindablePropertySorting.xaml │ │ │ ├── BindablePropertySorting.xaml.cs │ │ │ └── ViewModel.cs │ │ └── PropertySortDescriptorExample │ │ │ ├── PropertySorting.xaml │ │ │ ├── PropertySorting.xaml.cs │ │ │ └── ViewModel.cs │ └── StylingCategory │ │ ├── GroupHeadersStylingExample │ │ ├── ListViewGroupHeaderStyle.xaml │ │ ├── ListViewGroupHeaderStyle.xaml.cs │ │ └── ViewModel.cs │ │ ├── ItemStylesExample │ │ ├── ListViewItemStylesXaml.xaml │ │ ├── ListViewItemStylesXaml.xaml.cs │ │ └── ViewModel.cs │ │ └── StyleSelectorExample │ │ ├── ExampleListViewStyleSelector.cs │ │ ├── ListViewItemStyleSelectorXaml.xaml │ │ ├── ListViewItemStyleSelectorXaml.xaml.cs │ │ └── ViewModel.cs ├── MapControl │ ├── FeaturesCategory │ │ ├── InteractionModeExample │ │ │ ├── InteractionMode.xaml │ │ │ └── InteractionMode.xaml.cs │ │ ├── LabelAttributeNameExample │ │ │ ├── LabelAttributeName.xaml │ │ │ └── LabelAttributeName.xaml.cs │ │ ├── ProgrammaticZoomExample │ │ │ ├── ProgrammaticZoom.xaml │ │ │ └── ProgrammaticZoom.xaml.cs │ │ ├── SetBestViewExample │ │ │ ├── SetBestView.xaml │ │ │ └── SetBestView.xaml.cs │ │ ├── ShapeLabelStyleExample │ │ │ ├── ShapeLabelStyle.xaml │ │ │ └── ShapeLabelStyle.xaml.cs │ │ ├── ShapeStyleExample │ │ │ ├── ShapeStyle.xaml │ │ │ └── ShapeStyle.xaml.cs │ │ └── ShapeStyleSelectorExample │ │ │ ├── PopulationShapeStyleSelector.cs │ │ │ ├── ShapeStyleSelector.xaml │ │ │ └── ShapeStyleSelector.xaml.cs │ ├── GettingStartedCategory │ │ └── GettingStartedExample │ │ │ ├── MapGettingStartedXaml.xaml │ │ │ └── MapGettingStartedXaml.xaml.cs │ ├── SelectionCategory │ │ └── ProgrammaticSelectionExample │ │ │ ├── ProgrammaticSelection.xaml │ │ │ └── ProgrammaticSelection.xaml.cs │ ├── world.dbf │ └── world.shp ├── MaskedEntryControl │ ├── EventsCategory │ │ └── EventsExample │ │ │ ├── Events.xaml │ │ │ └── Events.xaml.cs │ ├── FeaturesCategory │ │ ├── AllowNullValuesExample │ │ │ ├── AllowNullValues.xaml │ │ │ └── AllowNullValues.xaml.cs │ │ ├── CultureExample │ │ │ ├── Culture.xaml │ │ │ └── Culture.xaml.cs │ │ ├── LocalizationExample │ │ │ ├── Localization.xaml │ │ │ ├── Localization.xaml.cs │ │ │ ├── MaskResource.Designer.cs │ │ │ ├── MaskResource.de.resx │ │ │ └── MaskResource.resx │ │ ├── StylingExample │ │ │ ├── Styling.xaml │ │ │ └── Styling.xaml.cs │ │ ├── ValidationErrorMessageExample │ │ │ ├── ValidationErrorMessage.xaml │ │ │ └── ValidationErrorMessage.xaml.cs │ │ ├── ValueExample │ │ │ ├── Value.xaml │ │ │ └── Value.xaml.cs │ │ └── ValueFormatExample │ │ │ ├── ValueFormat.xaml │ │ │ └── ValueFormat.xaml.cs │ ├── GettingStartedCategory │ │ └── GettingStartedExample │ │ │ ├── MaskedEntryGettingStartedXaml.xaml │ │ │ └── MaskedEntryGettingStartedXaml.xaml.cs │ └── MaskTypesCategory │ │ ├── EmailMaskExample │ │ ├── EmailMask.xaml │ │ └── EmailMask.xaml.cs │ │ ├── IpMaskExample │ │ ├── IpMask.xaml │ │ └── IpMask.xaml.cs │ │ ├── NumericMaskExample │ │ ├── NumericMask.xaml │ │ └── NumericMask.xaml.cs │ │ ├── RegexMaskExample │ │ ├── RegexMask.xaml │ │ └── RegexMask.xaml.cs │ │ └── TextMaskExample │ │ ├── TextMask.xaml │ │ └── TextMask.xaml.cs ├── NavigationViewControl │ ├── CommandsCategory │ │ └── CommandsExample │ │ │ ├── Commands.xaml │ │ │ └── Commands.xaml.cs │ ├── DataBindingCategory │ │ ├── DataBindingExample │ │ │ ├── DataBinding.xaml │ │ │ └── DataBinding.xaml.cs │ │ ├── DataItem.cs │ │ ├── ItemStyleExample │ │ │ ├── ItemStyle.xaml │ │ │ └── ItemStyle.xaml.cs │ │ ├── ItemStyleSelectorExample │ │ │ ├── ItemStyleSelector.xaml │ │ │ ├── ItemStyleSelector.xaml.cs │ │ │ └── NavigationItemStyleSelector.cs │ │ ├── ItemTemplateExample │ │ │ ├── ItemTemplate.xaml │ │ │ └── ItemTemplate.xaml.cs │ │ ├── ItemTemplateSelectorExample │ │ │ ├── ItemTemplateSelector.xaml │ │ │ ├── ItemTemplateSelector.xaml.cs │ │ │ └── NavigationItemTemplateSelector.cs │ │ └── ViewModel.cs │ ├── EventsCategory │ │ └── EventsExample │ │ │ ├── Events.xaml │ │ │ └── Events.xaml.cs │ ├── FeaturesCategory │ │ ├── CompactDisplayModeExample │ │ │ ├── CompactDisplayMode.xaml │ │ │ └── CompactDisplayMode.xaml.cs │ │ ├── ExpandedDisplayModeExample │ │ │ ├── ExpandedDisplayMode.xaml │ │ │ └── ExpandedDisplayMode.xaml.cs │ │ ├── MinimalDisplayModeExample │ │ │ ├── MinimalDisplayMode.xaml │ │ │ └── MinimalDisplayMode.xaml.cs │ │ ├── NavigationViewHeaderExample │ │ │ ├── NavigationViewHeader.xaml │ │ │ └── NavigationViewHeader.xaml.cs │ │ ├── NavigationViewItemTemplatesExample │ │ │ ├── NavigationViewItemTemplates.xaml │ │ │ └── NavigationViewItemTemplates.xaml.cs │ │ ├── PaneHeaderFooterExample │ │ │ ├── PaneHeaderFooter.xaml │ │ │ └── PaneHeaderFooter.xaml.cs │ │ └── SelectionExample │ │ │ ├── Selection.xaml │ │ │ └── Selection.xaml.cs │ ├── GettingStartedCategory │ │ └── GettingStartedExample │ │ │ ├── NavigationViewGettingStartedXaml.xaml │ │ │ └── NavigationViewGettingStartedXaml.xaml.cs │ └── StylingCategory │ │ ├── ItemStylingExample │ │ ├── ItemStyling.xaml │ │ └── ItemStyling.xaml.cs │ │ ├── NavigationViewStylingExample │ │ ├── NavigationViewStyling.xaml │ │ └── NavigationViewStyling.xaml.cs │ │ └── PaneStylingExample │ │ ├── PaneStyling.xaml │ │ └── PaneStyling.xaml.cs ├── NumericInputControl │ ├── FeaturesCategory │ │ ├── BindingsExample │ │ │ ├── Bindings.xaml │ │ │ ├── Bindings.xaml.cs │ │ │ └── ViewModel.cs │ │ ├── CommandsExample │ │ │ ├── Commands.xaml │ │ │ ├── Commands.xaml.cs │ │ │ └── CommandsViewModel.cs │ │ └── KeyFeaturesExample │ │ │ ├── KeyFeatures.xaml │ │ │ └── KeyFeatures.xaml.cs │ ├── GettingStartedCategory │ │ └── GettingStartedExample │ │ │ ├── NumericInputGettingStartedXaml.xaml │ │ │ └── NumericInputGettingStartedXaml.xaml.cs │ └── StylingCategory │ │ └── StylingExample │ │ ├── Styling.xaml │ │ └── Styling.xaml.cs ├── PathControl │ ├── FeaturesCategory │ │ ├── MultiPathExample │ │ │ ├── MultiPath.xaml │ │ │ └── MultiPath.xaml.cs │ │ └── PathGeometryExample │ │ │ ├── PathGeometry.xaml │ │ │ └── PathGeometry.xaml.cs │ └── GettingStartedCategory │ │ └── GettingStartedExample │ │ ├── PathGettingStartedXaml.xaml │ │ └── PathGettingStartedXaml.xaml.cs ├── PdfViewerControl │ ├── CommandsCategory │ │ └── CommandsExample │ │ │ ├── Commands.xaml │ │ │ └── Commands.xaml.cs │ ├── FeaturesCategory │ │ ├── BusyTemplateExample │ │ │ ├── BusyTemplate.xaml │ │ │ └── BusyTemplate.xaml.cs │ │ ├── LinkAnnotationExample │ │ │ ├── LinkAnnotation.xaml │ │ │ └── LinkAnnotation.xaml.cs │ │ ├── MinMaxZoomLevelExample │ │ │ ├── MinMaxZoomLevel.xaml │ │ │ └── MinMaxZoomLevel.xaml.cs │ │ ├── PageElementsLoadedExample │ │ │ ├── PageElementsLoaded.xaml │ │ │ └── PageElementsLoaded.xaml.cs │ │ └── SourceExceptionExample │ │ │ ├── SourceException.xaml │ │ │ └── SourceException.xaml.cs │ ├── GettingStartedCategory │ │ └── GettingStartedExample │ │ │ ├── GettingStartedXaml.xaml │ │ │ └── GettingStartedXaml.xaml.cs │ ├── SearchCategory │ │ ├── CommandsExample │ │ │ ├── Commands.xaml │ │ │ └── Commands.xaml.cs │ │ ├── CustomToolbarExample │ │ │ ├── CustomToolbar.xaml │ │ │ └── CustomToolbar.xaml.cs │ │ ├── ProgrammaticExample │ │ │ ├── Programmatic.xaml │ │ │ └── Programmatic.xaml.cs │ │ └── SearchSettingsExample │ │ │ ├── SearchSettings.xaml │ │ │ └── SearchSettings.xaml.cs │ ├── SelectionCategory │ │ └── TextSelectionExample │ │ │ ├── TextSelection.xaml │ │ │ ├── TextSelection.xaml.cs │ │ │ └── ViewModel.cs │ ├── ToolbarCategory │ │ ├── CustomToolbarExample │ │ │ ├── CustomToolbar.xaml │ │ │ ├── CustomToolbar.xaml.cs │ │ │ └── ViewModel.cs │ │ ├── ToolbarExample │ │ │ ├── Toolbar.xaml │ │ │ └── Toolbar.xaml.cs │ │ └── ToolbarStylingExample │ │ │ ├── ToolbarStyling.xaml │ │ │ └── ToolbarStyling.xaml.cs │ ├── pdf-overview.pdf │ └── pdf-processing.pdf ├── PopupControl │ ├── ContentTemplateCategory │ │ └── ContentTemplateExample │ │ │ ├── ContentTemplate.xaml │ │ │ └── ContentTemplate.xaml.cs │ ├── GettingStartedCategory │ │ └── GettingStartedExample │ │ │ ├── PopupGettingStarted.xaml │ │ │ └── PopupGettingStarted.xaml.cs │ ├── ModalPopupCategory │ │ └── ModalPopupExample │ │ │ ├── ModalPopup.xaml │ │ │ └── ModalPopup.xaml.cs │ ├── PlacementCategory │ │ └── PlacementExmaple │ │ │ ├── PopupPlacement.xaml │ │ │ └── PopupPlacement.xaml.cs │ └── StylingCategory │ │ └── StylingExample │ │ ├── Styling.xaml │ │ └── Styling.xaml.cs ├── ProgressBarControl │ ├── EventsCategory │ │ └── EventsExample │ │ │ ├── Events.xaml │ │ │ └── Events.xaml.cs │ ├── FeaturesCategory │ │ ├── AnimationExample │ │ │ ├── Animation.xaml │ │ │ └── Animation.xaml.cs │ │ ├── ConfigurationExample │ │ │ ├── Configuration.xaml │ │ │ └── Configuration.xaml.cs │ │ └── IndeterminateModeExample │ │ │ ├── IndeterminateMode.xaml │ │ │ └── IndeterminateMode.xaml.cs │ ├── GettingStartedCategory │ │ └── GettingStartedExample │ │ │ ├── ProgressBarGettingStartedCSharp.cs │ │ │ ├── ProgressBarGettingStartedXaml.xaml │ │ │ └── ProgressBarGettingStartedXaml.xaml.cs │ └── StylingCategory │ │ └── StylingExample │ │ ├── Styling.xaml │ │ └── Styling.xaml.cs ├── RangeSliderControl │ ├── FeaturesCategory │ │ ├── DragModeExample │ │ │ ├── DragMode.xaml │ │ │ └── DragMode.xaml.cs │ │ └── RangeThumbExample │ │ │ ├── RangeThumb.xaml │ │ │ ├── RangeThumb.xaml.cs │ │ │ └── ViewModel.cs │ ├── GettingStartedCategory │ │ └── GettingStartedExample │ │ │ ├── GettingStartedCSharp.cs │ │ │ ├── GettingStartedXaml.xaml │ │ │ └── GettingStartedXaml.xaml.cs │ ├── LabelsCategory │ │ ├── LabelStringConverterExample │ │ │ ├── LabelStringConverter.xaml │ │ │ └── LabelStringConverter.xaml.cs │ │ ├── LabelTemplateExample │ │ │ ├── LabelTemplate.xaml │ │ │ └── LabelTemplate.xaml.cs │ │ └── LabelsSettingsExample │ │ │ ├── LabelsSettings.xaml │ │ │ └── LabelsSettings.xaml.cs │ ├── StylingCategory │ │ ├── LabelsStyleSelectorExample │ │ │ ├── LabelsStyleSelector.xaml │ │ │ ├── LabelsStyleSelector.xaml.cs │ │ │ └── RangeLabelStyleSelector.cs │ │ ├── RangeElementsStylingExample │ │ │ ├── RangeElementsStyling.xaml │ │ │ └── RangeElementsStyling.xaml.cs │ │ ├── TicksStyleSelectorExample │ │ │ ├── RangeTickStyleSelector.cs │ │ │ ├── TicksStyleSelector.xaml │ │ │ └── TicksStyleSelector.xaml.cs │ │ └── TrackStylingExample │ │ │ ├── TrackStyling.xaml │ │ │ └── TrackStyling.xaml.cs │ ├── TicksCategory │ │ ├── TickTemplateExample │ │ │ ├── TickTemplate.xaml │ │ │ └── TickTemplate.xaml.cs │ │ └── TicksSettingsExample │ │ │ ├── TicksSettings.xaml │ │ │ └── TicksSettings.xaml.cs │ └── TooltipsCategory │ │ ├── TooltipContentTemplateExample │ │ ├── TooltipContentTemplate.xaml │ │ └── TooltipContentTemplate.xaml.cs │ │ └── TooltipContentTemplateSelectorExample │ │ ├── DoubleSubtractConverter.cs │ │ ├── TooltipContentTemplateSelector.xaml │ │ └── TooltipContentTemplateSelector.xaml.cs ├── RatingControl │ ├── ConfigurationCategory │ │ └── ConfigurationSettingsExample │ │ │ ├── ConfigurationSettings.xaml │ │ │ └── ConfigurationSettings.xaml.cs │ ├── GettingStartedCategory │ │ └── GettingStartedExample │ │ │ ├── RatingGettingStartedXaml.xaml │ │ │ └── RatingGettingStartedXaml.xaml.cs │ ├── RatingTypesCategory │ │ ├── GeometriesExample │ │ │ ├── Geometries.xaml │ │ │ └── Geometries.xaml.cs │ │ └── TemplatedExample │ │ │ ├── Templated.xaml │ │ │ └── Templated.xaml.cs │ └── ReadOnlyModeCategory │ │ └── ReadOnlyModeExample │ │ ├── ReadOnlyModeExample.xaml │ │ └── ReadOnlyModeExample.xaml.cs ├── RichTextEditorControl │ ├── EventsCategory │ │ └── HyperlinkErrorHandlingExample │ │ │ ├── HyperlinkErrorHandling.xaml │ │ │ └── HyperlinkErrorHandling.xaml.cs │ ├── FeaturesCategory │ │ ├── CommandsExample │ │ │ ├── Commands.xaml │ │ │ └── Commands.xaml.cs │ │ ├── CustomContextMenuExample │ │ │ ├── CustomContextMenu.xaml │ │ │ ├── CustomContextMenu.xaml.cs │ │ │ └── ViewModel.cs │ │ ├── CustomImagePickerExample │ │ │ ├── CustomImagePicker.xaml │ │ │ ├── CustomImagePicker.xaml.cs │ │ │ └── ViewModel.cs │ │ ├── GetHtmlExample │ │ │ ├── GetHtml.xaml │ │ │ └── GetHtml.xaml.cs │ │ └── ReadOnlyStateExample │ │ │ ├── ReadOnlyState.xaml │ │ │ └── ReadOnlyState.xaml.cs │ ├── GettingStartedCategory │ │ └── GettingStartedExample │ │ │ ├── GettingStarted.xaml │ │ │ └── GettingStarted.xaml.cs │ ├── PickYourHoliday.html │ ├── StylingCategory │ │ ├── EditorStylingExample │ │ │ ├── EditorStyling.xaml │ │ │ └── EditorStyling.xaml.cs │ │ └── ToolbarStylingExample │ │ │ ├── ToolbarStyling.xaml │ │ │ └── ToolbarStyling.xaml.cs │ ├── ToolbarCategory │ │ ├── AllToolbarItemsCSharpExample │ │ │ ├── AllToolbarItemsCSharp.xaml │ │ │ └── AllToolbarItemsCSharp.xaml.cs │ │ ├── AllToolbarItemsExample │ │ │ ├── AllToolbarItems.xaml │ │ │ └── AllToolbarItems.xaml.cs │ │ ├── CustomToolbarExample │ │ │ ├── CustomToolbar.xaml │ │ │ └── CustomToolbar.xaml.cs │ │ └── ToolbarExample │ │ │ ├── Toolbar.xaml │ │ │ └── Toolbar.xaml.cs │ ├── pick-image-demo.html │ └── richtexteditor-htmlsource.html ├── SchedulerControl │ ├── AppointmentsCategory │ │ ├── AppointmentTemplateExample │ │ │ ├── AppointmentTemplate.xaml │ │ │ ├── AppointmentTemplate.xaml.cs │ │ │ └── CustomAppointmentDataTemplate.cs │ │ ├── AppointmentsSourceExample │ │ │ ├── AppointmentsSource.xaml │ │ │ └── AppointmentsSource.xaml.cs │ │ └── ViewModel.cs │ ├── BuiltInDialogsCategory │ │ ├── DialogsEventsExample │ │ │ ├── DialogsEvents.xaml │ │ │ └── DialogsEvents.xaml.cs │ │ ├── DialogsMethodsExample │ │ │ ├── DialogsMethods.xaml │ │ │ └── DialogsMethods.xaml.cs │ │ └── ViewModel.cs │ ├── CommandsCategory │ │ └── NavigationCommandsExample │ │ │ ├── NavigationCommands.xaml │ │ │ └── NavigationCommands.xaml.cs │ ├── FeaturesCategory │ │ ├── CurrentTimeIndicatorExample │ │ │ ├── CurrentTimeIndicator.xaml │ │ │ └── CurrentTimeIndicator.xaml.cs │ │ ├── CustomDateFormatsExample │ │ │ ├── CustomDateFormats.xaml │ │ │ └── CustomDateFormats.xaml.cs │ │ ├── GlobalizationExample │ │ │ ├── Globalization.xaml │ │ │ └── Globalization.xaml.cs │ │ ├── HeaderTitleAndTextFormatExample │ │ │ ├── HeaderTitleAndTextFormat.xaml │ │ │ └── HeaderTitleAndTextFormat.xaml.cs │ │ └── ProgrammaticScrollingExample │ │ │ ├── ProgrammaticScrolling.xaml │ │ │ └── ProgrammaticScrolling.xaml.cs │ ├── GettingStartedCategory │ │ └── GettingStartedExample │ │ │ ├── GettingStartedCSharp.cs │ │ │ ├── GettingStartedXaml.xaml │ │ │ └── GettingStartedXaml.xaml.cs │ ├── SpecialSlotsCategory │ │ ├── SpecialSlotTemplateExample │ │ │ ├── SpecialSlotTemplate.xaml │ │ │ ├── SpecialSlotTemplate.xaml.cs │ │ │ └── ViewModel.cs │ │ └── SpecialSlotsExample │ │ │ ├── SpecialSlots.xaml │ │ │ ├── SpecialSlots.xaml.cs │ │ │ └── ViewModel.cs │ └── StylingCategory │ │ ├── AppointmentStylingExample │ │ ├── AppointmentStyling.xaml │ │ ├── AppointmentStyling.xaml.cs │ │ └── CustomAppointmentStyleSelector.cs │ │ ├── CurrentTimeIndicatorStylingExample │ │ ├── CurrentTimeIndicatorStyling.xaml │ │ └── CurrentTimeIndicatorStyling.xaml.cs │ │ ├── DayStylingExample │ │ ├── CustomDayStyleSelector.cs │ │ ├── DayStyling.xaml │ │ └── DayStyling.xaml.cs │ │ ├── HeaderStylingExample │ │ ├── HeaderStyling.xaml │ │ └── HeaderStyling.xaml.cs │ │ ├── LinesStylingExample │ │ ├── LinesStyling.xaml │ │ └── LinesStyling.xaml.cs │ │ ├── MoreIndicatorStylingExample │ │ ├── MoreIndicatorStyling.xaml │ │ └── MoreIndicatorStyling.xaml.cs │ │ ├── SpecialSlotsStylingExample │ │ ├── CustomSpecialSlotStyleSelector.cs │ │ ├── SpecialSlotsStyling.xaml │ │ ├── SpecialSlotsStyling.xaml.cs │ │ └── ViewModel.cs │ │ └── TimeRulerLabelStylingExample │ │ ├── TimeRulerLabelStyling.xaml │ │ └── TimeRulerLabelStyling.xaml.cs ├── SegmentedControl │ ├── DisableSegmentCategory │ │ └── DisableSegmentExample │ │ │ ├── DisableSegment.xaml │ │ │ └── DisableSegment.xaml.cs │ ├── GettingStartedCategory │ │ └── GettingStartedExample │ │ │ ├── SegmentControlGettingStartedXaml.xaml │ │ │ └── SegmentControlGettingStartedXaml.xaml.cs │ ├── SelectionCategory │ │ └── SelectionExample │ │ │ ├── Selection.xaml │ │ │ ├── Selection.xaml.cs │ │ │ └── ViewModel.cs │ └── StylingCategory │ │ └── StylingExample │ │ ├── Styling.xaml │ │ └── Styling.xaml.cs ├── SideDrawerControl │ ├── CommandsCategory │ │ ├── CustomCommandsExample │ │ │ ├── CommandsView.xaml │ │ │ ├── CommandsView.xaml.cs │ │ │ └── CustomCommand.cs │ │ └── CustomCommandsMVVMExample │ │ │ ├── CommandsView.xaml │ │ │ ├── CommandsView.xaml.cs │ │ │ ├── CommandsViewModel.cs │ │ │ ├── CustomClosedCommand.cs │ │ │ ├── CustomClosingCommand.cs │ │ │ ├── CustomOpenedCommand.cs │ │ │ └── CustomOpeningCommand.cs │ ├── FeaturesCategory │ │ ├── LocationExample │ │ │ ├── Location.xaml │ │ │ └── Location.xaml.cs │ │ └── TransitionsExample │ │ │ ├── Transitions.xaml │ │ │ └── Transitions.xaml.cs │ └── GettingStartedCategory │ │ └── GettingStartedExample │ │ ├── SideDrawerGettingStartedXaml.xaml │ │ └── SideDrawerGettingStartedXaml.xaml.cs ├── SignaturePadControl │ ├── CommandsCategory │ │ └── CommandsExample │ │ │ ├── Commands.xaml │ │ │ └── Commands.xaml.cs │ ├── ConfigurationCategory │ │ └── ConfigurationExample │ │ │ ├── Configuration.xaml │ │ │ └── Configuration.xaml.cs │ ├── EventsCategory │ │ └── EventsExample │ │ │ ├── Events.xaml │ │ │ └── Events.xaml.cs │ ├── GettingStartedCategory │ │ └── GettingStartedExample │ │ │ ├── SignaturePadGettingStartedCSharp.cs │ │ │ ├── SignaturePadGettingStartedXaml.xaml │ │ │ └── SignaturePadGettingStartedXaml.xaml.cs │ └── SavingOptionsCategory │ │ └── SavingOptionsExample │ │ ├── SaveSignatureAsImage.xaml │ │ └── SaveSignatureAsImage.xaml.cs ├── SlideViewControl │ ├── CommandsCategory │ │ └── CommandsExample │ │ │ ├── Commands.xaml │ │ │ └── Commands.xaml.cs │ ├── EventsCategory │ │ └── EventsExample │ │ │ ├── Events.xaml │ │ │ └── Events.xaml.cs │ ├── FeaturesCategory │ │ ├── InteractionModeExample │ │ │ ├── InteractionMode.xaml │ │ │ └── InteractionMode.xaml.cs │ │ └── OrientationExample │ │ │ ├── Orientation.xaml │ │ │ └── Orientation.xaml.cs │ ├── GettingStartedCategory │ │ └── GettingStartedExample │ │ │ ├── GettingStarted.xaml │ │ │ └── GettingStarted.xaml.cs │ ├── MyItem.cs │ ├── StylingCategory │ │ ├── IndicatorStylingExample │ │ │ ├── IndicatorStyling.xaml │ │ │ └── IndicatorStyling.xaml.cs │ │ └── NavigationButtonsStylingExample │ │ │ ├── NavigationButtonsStyling.xaml │ │ │ └── NavigationButtonsStyling.xaml.cs │ ├── TemplatesCategory │ │ └── ItemTemplateExample │ │ │ ├── ItemTemplate.xaml │ │ │ ├── ItemTemplate.xaml.cs │ │ │ └── ItemTemplateViewModel.cs │ └── ViewModel.cs ├── SliderControl │ ├── FeaturesCategory │ │ ├── DragModeExample │ │ │ ├── DragMode.xaml │ │ │ └── DragMode.xaml.cs │ │ ├── RangeTrackExample │ │ │ ├── RangeTrack.xaml │ │ │ └── RangeTrack.xaml.cs │ │ └── SliderValueExample │ │ │ ├── SliderValue.xaml │ │ │ ├── SliderValue.xaml.cs │ │ │ └── ViewModel.cs │ ├── GettingStartedCategory │ │ └── GettingStartedExample │ │ │ ├── SliderGettingStartedCSharp.cs │ │ │ ├── SliderGettingStartedXaml.xaml │ │ │ └── SliderGettingStartedXaml.xaml.cs │ ├── LabelsCategory │ │ ├── LabelStringConverterExample │ │ │ ├── LabelStringConverter.xaml │ │ │ └── LabelStringConverter.xaml.cs │ │ ├── LabelTemplateExample │ │ │ ├── LabelTemplate.xaml │ │ │ └── LabelTemplate.xaml.cs │ │ └── LabelsSettingsExample │ │ │ ├── LabelsSettings.xaml │ │ │ └── LabelsSettings.xaml.cs │ ├── StylingCategory │ │ ├── LabelsStyleSelectorExample │ │ │ ├── LabelsStyleSelector.xaml │ │ │ ├── LabelsStyleSelector.xaml.cs │ │ │ └── RangeLabelStyleSelector.cs │ │ ├── TicksStyleSelectorExample │ │ │ ├── CustomTickStyleSelector.cs │ │ │ ├── TicksStyleSelector.xaml │ │ │ └── TicksStyleSelector.xaml.cs │ │ ├── TicksStylingExample │ │ │ ├── TicksStyling.xaml │ │ │ └── TicksStyling.xaml.cs │ │ ├── TrackStylingExample │ │ │ ├── TrackStyling.xaml │ │ │ └── TrackStyling.xaml.cs │ │ └── ValueElementsStylingExample │ │ │ ├── ValueElementsStyling.xaml │ │ │ └── ValueElementsStyling.xaml.cs │ ├── TicksCategory │ │ ├── TickTemplateExample │ │ │ ├── TickTemplate.xaml │ │ │ └── TickTemplate.xaml.cs │ │ └── TicksSettingsExample │ │ │ ├── TicksSettings.xaml │ │ │ └── TicksSettings.xaml.cs │ └── TooltipsCategory │ │ ├── TooltipContentTemplateExample │ │ ├── TooltipContentTemplate.xaml │ │ └── TooltipContentTemplate.xaml.cs │ │ └── TooltipControlTemplateExample │ │ ├── TooltipControlTemplate.xaml │ │ └── TooltipControlTemplate.xaml.cs ├── TabViewControl │ ├── FeaturesCategory │ │ ├── ContentSwipingExample │ │ │ ├── ContentSwiping.xaml │ │ │ └── ContentSwiping.xaml.cs │ │ ├── DataBindingExample │ │ │ ├── Customer.cs │ │ │ ├── DataBinding.xaml │ │ │ ├── DataBinding.xaml.cs │ │ │ └── ViewModel.cs │ │ ├── HeaderConfigurationExample │ │ │ ├── HeaderConfiguration.xaml │ │ │ └── HeaderConfiguration.xaml.cs │ │ └── SelectionExample │ │ │ └── Selection.cs │ ├── GettingStartedCategory │ │ └── GettingStartedExample │ │ │ ├── TabViewGettingStartedCSharp.cs │ │ │ ├── TabViewGettingStartedXaml.xaml │ │ │ └── TabViewGettingStartedXaml.xaml.cs │ └── StylingCategory │ │ ├── ContentStyleExample │ │ ├── TabViewContentStyle.xaml │ │ └── TabViewContentStyle.xaml.cs │ │ ├── HeaderItemStyleExample │ │ ├── TabViewHeaderItemStyle.xaml │ │ └── TabViewHeaderItemStyle.xaml.cs │ │ ├── HeaderItemStyleSelectorExample │ │ ├── HeaderItemStyleSelector.xaml │ │ ├── HeaderItemStyleSelector.xaml.cs │ │ └── MyCustomHeaderItemStyleSelector.cs │ │ └── HeaderStyleExample │ │ ├── TabViewHeaderStyle.xaml │ │ └── TabViewHeaderStyle.xaml.cs ├── TemplatedButtonControl │ ├── EventsCategory │ │ ├── ClickedEventExample │ │ │ ├── Clicked.xaml │ │ │ └── Clicked.xaml.cs │ │ ├── PressedEventExample │ │ │ ├── Pressed.xaml │ │ │ └── Pressed.xaml.cs │ │ └── ReleasedEventExample │ │ │ ├── Released.xaml │ │ │ └── Released.xaml.cs │ ├── FeaturesCategory │ │ ├── CommandExample │ │ │ ├── Command.xaml │ │ │ ├── Command.xaml.cs │ │ │ └── ViewModel.cs │ │ ├── ContentTemplateExample │ │ │ ├── Contact.cs │ │ │ ├── ContentTemplate.xaml │ │ │ ├── ContentTemplate.xaml.cs │ │ │ └── ViewModel.cs │ │ ├── LoadingButtonExample │ │ │ ├── LoadingButton.xaml │ │ │ ├── LoadingButton.xaml.cs │ │ │ └── LoadingButtonViewModel.cs │ │ ├── RippleEffectExample │ │ │ ├── RippleCustomization.xaml │ │ │ └── RippleCustomization.xaml.cs │ │ └── VisualStatesExample │ │ │ ├── VisualStates.xaml │ │ │ └── VisualStates.xaml.cs │ ├── GettingStartedCategory │ │ └── GettingStartedExample │ │ │ ├── GettingStartedCSharp.cs │ │ │ ├── GettingStartedXaml.xaml │ │ │ └── GettingStartedXaml.xaml.cs │ └── StylingCategory │ │ └── StylingExample │ │ ├── Styling.xaml │ │ └── Styling.xaml.cs ├── TemplatedPickerControl │ ├── City.cs │ ├── ColorViewModel.cs │ ├── Country.cs │ ├── DataBindingCategory │ │ └── DataBindingExample │ │ │ ├── DataBinding.xaml │ │ │ └── DataBinding.xaml.cs │ ├── GettingStartedCategory │ │ └── GettingStartedExample │ │ │ ├── TemplatedPickerGettingStartedCSharp.cs │ │ │ ├── TemplatedPickerGettingStartedXaml.xaml │ │ │ └── TemplatedPickerGettingStartedXaml.xaml.cs │ ├── LocationViewModel.cs │ └── StylingCategory │ │ ├── DropDownStylingExample │ │ ├── DropDownStyling.xaml │ │ └── DropDownStyling.xaml.cs │ │ ├── PopupStylingExample │ │ ├── PopupStyling.xaml │ │ └── PopupStyling.xaml.cs │ │ └── StylingExample │ │ ├── Styling.xaml │ │ └── Styling.xaml.cs ├── TimePickerControl │ ├── GettingStartedCategory │ │ └── GettingStartedExample │ │ │ ├── TimePickerGettingStartedCSharp.cs │ │ │ ├── TimePickerGettingStartedXaml.xaml │ │ │ └── TimePickerGettingStartedXaml.xaml.cs │ ├── StylingCategory │ │ ├── DropDownStylingExample │ │ │ ├── DropDownStyling.xaml │ │ │ └── DropDownStyling.xaml.cs │ │ ├── PopupStylingExample │ │ │ ├── PopupStyling.xaml │ │ │ └── PopupStyling.xaml.cs │ │ └── StylingExample │ │ │ ├── Styling.xaml │ │ │ └── Styling.xaml.cs │ ├── TemplatesCategory │ │ └── CustomTemplatesExample │ │ │ ├── CustomTemplates.xaml │ │ │ └── CustomTemplates.xaml.cs │ ├── TimeOnlySupportCategory │ │ └── TimeOnlySupportExample │ │ │ ├── TimeOnlySupport.xaml │ │ │ ├── TimeOnlySupport.xaml.cs │ │ │ └── ViewModel.cs │ └── TimePropertiesCategory │ │ └── TimePropertiesExample │ │ ├── TimeProperties.xaml │ │ └── TimeProperties.xaml.cs ├── TimeSpanPickerControl │ ├── GettingStartedCategory │ │ └── GettingStartedExample │ │ │ ├── TimeSpanPickerGettingStartedCSharp.cs │ │ │ ├── TimeSpanPickerGettingStartedXaml.xaml │ │ │ └── TimeSpanPickerGettingStartedXaml.xaml.cs │ ├── StylingCategory │ │ ├── DropDownStylingExample │ │ │ ├── DropDownStyling.xaml │ │ │ └── DropDownStyling.xaml.cs │ │ ├── PopupStylingExample │ │ │ ├── PopupStyling.xaml │ │ │ └── PopupStyling.xaml.cs │ │ └── StylingExample │ │ │ ├── Styling.xaml │ │ │ └── Styling.xaml.cs │ ├── TemplatesCategory │ │ └── CustomTemplatesExample │ │ │ ├── CustomTemplates.xaml │ │ │ └── CustomTemplates.xaml.cs │ ├── TimeOnlySupportCategory │ │ └── TimeOnlySupportExample │ │ │ ├── TimeOnlySupport.xaml │ │ │ └── TimeOnlySupport.xaml.cs │ └── TimeSpanPropertiesCategory │ │ └── TimeSpanPropertiesExample │ │ ├── TimeSpanProperties.xaml │ │ └── TimeSpanProperties.xaml.cs ├── ToggleButtonControl │ ├── EventsCategory │ │ ├── ClickedEventExample │ │ │ ├── Clicked.xaml │ │ │ └── Clicked.xaml.cs │ │ ├── IsToggleChangedEventExample │ │ │ ├── IsToggleChanged.xaml │ │ │ └── IsToggleChanged.xaml.cs │ │ ├── PressedEventExample │ │ │ ├── Pressed.xaml │ │ │ └── Pressed.xaml.cs │ │ └── ReleasedEventExample │ │ │ ├── Released.xaml │ │ │ └── Released.xaml.cs │ ├── FeaturesCategory │ │ ├── CommandExample │ │ │ ├── Command.xaml │ │ │ ├── Command.xaml.cs │ │ │ └── ViewModel.cs │ │ ├── ContentTemplateExample │ │ │ ├── ContentTemplate.xaml │ │ │ ├── ContentTemplate.xaml.cs │ │ │ ├── Mail.cs │ │ │ └── ViewModel.cs │ │ ├── RippleEffectExample │ │ │ ├── RippleCustomization.xaml │ │ │ └── RippleCustomization.xaml.cs │ │ ├── ThreeStateExample │ │ │ ├── ThreeState.xaml │ │ │ └── ThreeState.xaml.cs │ │ └── VisualStatesExample │ │ │ ├── VisualStates.xaml │ │ │ └── VisualStates.xaml.cs │ ├── GettingStartedCategory │ │ └── GettingStartedExample │ │ │ ├── GettingStartedCSharp.cs │ │ │ ├── GettingStartedXaml.xaml │ │ │ └── GettingStartedXaml.xaml.cs │ └── StylingCategory │ │ └── StylingExample │ │ ├── Styling.xaml │ │ └── Styling.xaml.cs ├── ToolbarControl │ ├── ConfigurationCategory │ │ └── ConfigurationExample │ │ │ ├── Configuration.xaml │ │ │ └── Configuration.xaml.cs │ └── GettingStartedCategory │ │ └── GettingStartedExample │ │ ├── GettingStartedXaml.xaml │ │ └── GettingStartedXaml.xaml.cs ├── TreeDataGridControl │ ├── Data.cs │ ├── DynamicDataCategory │ │ ├── DynamicObjectExample │ │ │ ├── DynamicObjectXaml.xaml │ │ │ ├── DynamicObjectXaml.xaml.cs │ │ │ ├── MyDynamicObject.cs │ │ │ └── ViewModel.cs │ │ └── ExpandoObjectExample │ │ │ ├── ExpandoObjectXaml.xaml │ │ │ ├── ExpandoObjectXaml.xaml.cs │ │ │ └── ViewModel.cs │ ├── GettingStartedCategory │ │ └── GettingStartedExample │ │ │ ├── GettingStartedXaml.xaml │ │ │ └── GettingStartedXaml.xaml.cs │ └── ViewModel.cs ├── TreeViewControl │ ├── CheckBoxCategory │ │ ├── IndependentModeExample │ │ │ ├── IndependentMode.xaml │ │ │ └── IndependentMode.xaml.cs │ │ └── RecursiveModeExample │ │ │ ├── RecursiveMode.xaml │ │ │ └── RecursiveMode.xaml.cs │ ├── CommandsCategory │ │ ├── CheckUncheckExample │ │ │ ├── CheckUncheck.xaml │ │ │ └── CheckUncheck.xaml.cs │ │ └── ExpandCollapseExample │ │ │ ├── ExpandCollapse.xaml │ │ │ └── ExpandCollapse.xaml.cs │ ├── EventsCategory │ │ ├── Data.cs │ │ ├── ItemTappedExample │ │ │ ├── ItemTapped.xaml │ │ │ └── ItemTapped.xaml.cs │ │ ├── SelectionChangedExample │ │ │ ├── SelectionChanged.xaml │ │ │ └── SelectionChanged.xaml.cs │ │ └── ViewModel.cs │ ├── ExpandCollapseCategory │ │ └── ExpandCollapseExample │ │ │ ├── ExpandCollapse.xaml │ │ │ └── ExpandCollapse.xaml.cs │ ├── GettingStartedCategory │ │ └── GettingStartedExample │ │ │ ├── GettingStartedXaml.xaml │ │ │ └── GettingStartedXaml.xaml.cs │ ├── Item.cs │ ├── LoadChildrenOnDemandCategory │ │ └── LoadChildrenOnDemandCommandExample │ │ │ ├── Category.cs │ │ │ ├── LoadChildrenOnDemandCommand.xaml │ │ │ ├── LoadChildrenOnDemandCommand.xaml.cs │ │ │ └── LoadingViewModel.cs │ ├── ScrollingCategory │ │ ├── City.cs │ │ ├── Country.cs │ │ ├── Location.cs │ │ ├── LocationViewModel.cs │ │ ├── ProgrammaticScrollingExample │ │ │ ├── ProgrammaticScrolling.xaml │ │ │ └── ProgrammaticScrolling.xaml.cs │ │ └── ScrollbarsExample │ │ │ ├── Scrollbars.xaml │ │ │ └── Scrollbars.xaml.cs │ ├── SelectionCategory │ │ ├── DisabledSelectionExample │ │ │ ├── DisabledSelection.xaml │ │ │ └── DisabledSelection.xaml.cs │ │ ├── MultipleSelectionExample │ │ │ ├── MultipleSelection.xaml │ │ │ └── MultipleSelection.xaml.cs │ │ └── SelectedItemExample │ │ │ ├── SelectedItem.xaml │ │ │ └── SelectedItem.xaml.cs │ ├── StylingCategory │ │ ├── ItemStyleSelectorExample │ │ │ ├── ItemStyleSelector.xaml │ │ │ └── ItemStyleSelector.xaml.cs │ │ ├── ItemStylingExample │ │ │ ├── ItemStyling.xaml │ │ │ └── ItemStyling.xaml.cs │ │ └── LocationsStyleSelector.cs │ └── ViewModel.cs └── WrapLayoutControl │ ├── GettingStartedCategory │ └── GettingStartedExample │ │ ├── WrapLAyoutGettingStartedXaml.xaml.cs │ │ └── WrapLayoutGettingStartedXaml.xaml │ └── WrapFunctionalityCategory │ ├── WrapLayoutIExample │ ├── WrapLayoutItemSize.xaml │ └── WrapLayoutItemSize.xaml.cs │ ├── WrapLayoutOrientationsExample │ ├── WrapLAyoutOrientations.xaml.cs │ └── WrapLayoutOrientations.xaml │ └── WrapLayoutStretchLastChildExample │ ├── WrapLayoutStretchLastChild.xaml │ └── WrapLayoutStretchLastChild.xaml.cs ├── MauiProgram.cs ├── Pages ├── CategoryPage.xaml ├── CategoryPage.xaml.cs ├── ControlPage.xaml ├── ControlPage.xaml.cs ├── ExamplePage.xaml ├── ExamplePage.xaml.cs ├── HomePage.xaml ├── HomePage.xaml.cs ├── SearchPage.xaml ├── SearchPage.xaml.cs ├── UITestsHomePage.xaml └── UITestsHomePage.xaml.cs ├── Platforms ├── Android │ ├── AndroidEnvironment.txt │ ├── AndroidManifest.xml │ ├── MainActivity.cs │ ├── MainApplication.cs │ └── Resources │ │ └── values │ │ ├── colors.xml │ │ └── styles.xml ├── MacCatalyst │ ├── AppDelegate.cs │ ├── Entitlements.plist │ ├── Info.plist │ └── Program.cs ├── Windows │ ├── App.xaml │ ├── App.xaml.cs │ ├── Package.appxmanifest │ ├── RadImageButton.cs │ ├── RadImageButtonHandler.cs │ └── app.manifest └── iOS │ ├── AppDelegate.cs │ ├── Entitlements.plist │ ├── Info.plist │ ├── Program.cs │ └── Resources │ └── LaunchScreen.xib ├── Properties └── launchSettings.json ├── Resources ├── Fonts │ ├── OpenSans-Regular.ttf │ └── telerikfontexamples.ttf ├── Images │ ├── Emojis │ │ ├── emoji_amazed.png │ │ ├── emoji_confused.png │ │ ├── emoji_cool.png │ │ ├── emoji_dissapointment.png │ │ ├── emoji_loughing.png │ │ ├── emoji_love.png │ │ ├── emoji_neutral.png │ │ ├── emoji_sad.png │ │ ├── emoji_smile.png │ │ ├── emoji_smile2.png │ │ ├── emoji_tongue_out.png │ │ └── emoji_wink.png │ ├── accordion.svg │ ├── aiprompt.svg │ ├── arrowdown.svg │ ├── arrowleft.svg │ ├── arrowright.svg │ ├── autocomplete.svg │ ├── available.png │ ├── avatar.png │ ├── away.png │ ├── badge.svg │ ├── balloon.jpg │ ├── barcode.svg │ ├── border.svg │ ├── bullet.png │ ├── busy.png │ ├── busyindicator.svg │ ├── button.svg │ ├── calendar.svg │ ├── chart.svg │ ├── chat.svg │ ├── chatbackground.jpg │ ├── checkbox.svg │ ├── close.svg │ ├── collectionview.svg │ ├── combobox.svg │ ├── dataform.svg │ ├── datagrid.svg │ ├── datapager.svg │ ├── datepicker.svg │ ├── datetimepicker.svg │ ├── delete.png │ ├── docklayout.svg │ ├── dotnet_bot.svg │ ├── entry.svg │ ├── expander.svg │ ├── favourite.png │ ├── gauge.svg │ ├── gridsplitter.svg │ ├── hamburgermenu.svg │ ├── imageeditor.svg │ ├── itemscontrol.svg │ ├── listpicker.svg │ ├── listview.svg │ ├── logo.svg │ ├── logosplashscreen.svg │ ├── map.svg │ ├── mask.svg │ ├── navigationview.svg │ ├── nodata.svg │ ├── numeric.svg │ ├── path.svg │ ├── pdfviewer.svg │ ├── person_01.png │ ├── popup.svg │ ├── progressbar.svg │ ├── rangeslider.svg │ ├── rating.svg │ ├── richtexteditor.svg │ ├── sampleavatar.png │ ├── samplebot.png │ ├── scheduler.svg │ ├── searchentry.svg │ ├── searchheader.svg │ ├── segmented.svg │ ├── sidedrawer.svg │ ├── signaturepad.svg │ ├── slider.svg │ ├── slideview.svg │ ├── success.png │ ├── tabview.svg │ ├── templatedbutton.svg │ ├── templatedpicker.svg │ ├── timepicker.svg │ ├── timespanpicker.svg │ ├── togglebutton.svg │ ├── toolbar.svg │ ├── treeview.svg │ ├── unread.png │ └── wraplayout.svg ├── appicon.svg ├── appiconfg.svg └── dot_net.svg ├── SDKBrowserMaui.csproj ├── SDKBrowserMaui.sln ├── Services ├── BackdoorService.cs ├── ConfigurationService.cs ├── ExampleService.cs ├── IBackdoorService.cs ├── IConfigurationService.cs ├── IExampleService.cs ├── INavigationService.cs └── NavigationService.cs ├── ViewModels ├── CategoryViewModel.cs ├── ControlViewModel.cs ├── ExampleViewModel.cs ├── ExamplesViewModelBase.cs ├── HomeViewModel.cs ├── InfoViewModel.cs ├── PageViewModel.cs ├── SearchViewModel.cs ├── ThemeSettingsViewModel.cs └── UITestsHomeViewModel.cs ├── Views ├── HeaderView.xaml └── HeaderView.xaml.cs └── config.xml /Images/Telerik-UI-For-MAUI-ControlsSamples-Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Images/Telerik-UI-For-MAUI-ControlsSamples-Image.png -------------------------------------------------------------------------------- /Images/Telerik-UI-For-MAUI-CryptoTracker-Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Images/Telerik-UI-For-MAUI-CryptoTracker-Image.png -------------------------------------------------------------------------------- /Images/Telerik-UI-For-MAUI-SDKBrowser-Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Images/Telerik-UI-For-MAUI-SDKBrowser-Image.png -------------------------------------------------------------------------------- /Samples/AppUtils/Services/Testing/ITestingService.cs: -------------------------------------------------------------------------------- 1 | namespace Telerik.AppUtils.Services; 2 | 3 | public interface ITestingService 4 | { 5 | bool IsAppUnderTest { get; set; } 6 | 7 | DateTime DateTimeNow(DateTime staticTime); 8 | 9 | Random Random(int seed); 10 | 11 | public event EventHandler OnCommand; 12 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Common/AppAppearanceMode.cs: -------------------------------------------------------------------------------- 1 | namespace QSF.Common; 2 | 3 | enum AppAppearanceMode 4 | { 5 | Light, 6 | Dark, 7 | Auto 8 | } 9 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Common/DemoApp.cs: -------------------------------------------------------------------------------- 1 | namespace QSF.Common; 2 | 3 | public class DemoApp 4 | { 5 | public string Icon { get; set; } 6 | public string DisplayText { get; set; } 7 | public string Url { get; set; } 8 | } 9 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Common/HighlightedControl.cs: -------------------------------------------------------------------------------- 1 | namespace QSF.Common; 2 | 3 | public class HighlightedControl 4 | { 5 | public string Icon { get; set; } 6 | public string DisplayName { get; set; } 7 | public string ShortDescription { get; set; } 8 | 9 | } 10 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Common/MauiHighlight.cs: -------------------------------------------------------------------------------- 1 | namespace QSF.Common; 2 | 3 | public class MauiHighlight 4 | { 5 | public string Icon { get; set; } 6 | public string DisplayText { get; set; } 7 | public string Url { get; set; } 8 | } 9 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Common/StatusType.cs: -------------------------------------------------------------------------------- 1 | namespace QSF.Common; 2 | 3 | public enum StatusType 4 | { 5 | Normal, 6 | New, 7 | Beta, 8 | Updated 9 | } 10 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/AIPromptControl/FirstLookExample/Format.cs: -------------------------------------------------------------------------------- 1 | namespace QSF.Examples.AIPromptControl.FirstLookExample; 2 | 3 | public enum Format 4 | { 5 | Default, 6 | Expanded, 7 | Simplified, 8 | } 9 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/AIPromptControl/FirstLookExample/Language.cs: -------------------------------------------------------------------------------- 1 | namespace QSF.Examples.AIPromptControl.FirstLookExample; 2 | 3 | public enum Language 4 | { 5 | English, 6 | German, 7 | Spanish, 8 | } 9 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/AIPromptControl/FirstLookExample/SuggestionId.cs: -------------------------------------------------------------------------------- 1 | namespace QSF.Examples.AIPromptControl.FirstLookExample; 2 | 3 | public enum SuggestionId 4 | { 5 | Undefined, 6 | S1, 7 | S2, 8 | } 9 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/AIPromptControl/ThemingExample/ThemingView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | using Telerik.Maui.Controls; 3 | 4 | namespace QSF.Examples.AIPromptControl.ThemingExample; 5 | 6 | public partial class ThemingView : RadContentView 7 | { 8 | public ThemingView() 9 | { 10 | InitializeComponent(); 11 | } 12 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/AccordionControl/ConfigurationExample/ConfigurationArea.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Examples.AccordionControl.ConfigurationExample; 4 | 5 | public partial class ConfigurationArea : ContentView 6 | { 7 | public ConfigurationArea() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/AccordionControl/ConfigurationExample/ConfigurationView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Examples.AccordionControl.ConfigurationExample; 4 | 5 | public partial class ConfigurationView : ContentView 6 | { 7 | public ConfigurationView() 8 | { 9 | this.InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/AccordionControl/CustomizationExample/CustomizationView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Telerik.Maui.Controls; 2 | 3 | namespace QSF.Examples.AccordionControl.CustomizationExample; 4 | 5 | public partial class CustomizationView : RadContentView 6 | { 7 | public CustomizationView() 8 | { 9 | this.InitializeComponent(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/AccordionControl/FirstLookExample/FirstLookView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Telerik.Maui.Controls; 2 | 3 | namespace QSF.Examples.AccordionControl.FirstLookExample; 4 | 5 | public partial class FirstLookView : RadContentView 6 | { 7 | public FirstLookView() 8 | { 9 | this.InitializeComponent(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/AutoCompleteControl/ConfigurationExample/ConfigurationView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Examples.AutoCompleteControl.ConfigurationExample; 4 | 5 | public partial class ConfigurationView : ContentView 6 | { 7 | public ConfigurationView() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/AutoCompleteControl/CustomizationExample/JobType.cs: -------------------------------------------------------------------------------- 1 | namespace QSF.Examples.AutoCompleteControl.CustomizationExample 2 | { 3 | public enum JobType 4 | { 5 | Developer, 6 | Designer, 7 | Manager 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/BorderControl/ConfigurationExample/ConfigurationView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Examples.BorderControl.ConfigurationExample; 4 | 5 | public partial class ConfigurationView : ContentView 6 | { 7 | public ConfigurationView() 8 | { 9 | InitializeComponent(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/CalendarControl/ThemingExample/ThemingView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Telerik.Maui.Controls; 2 | 3 | namespace QSF.Examples.CalendarControl.ThemingExample; 4 | 5 | public partial class ThemingView : RadContentView 6 | { 7 | public ThemingView() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ChartControl/BarSeriesExample/BarSeriesView.xaml.cs: -------------------------------------------------------------------------------- 1 | using QSF.Views; 2 | 3 | namespace QSF.Examples.ChartControl.BarSeriesExample; 4 | 5 | public partial class BarSeriesView : GalleryExampleViewBase 6 | { 7 | public BarSeriesView() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ChartControl/DataItem.cs: -------------------------------------------------------------------------------- 1 | namespace QSF.Examples.ChartControl 2 | { 3 | public class DataItem 4 | { 5 | public string Category { get; set; } 6 | public double? Value { get; set; } 7 | public double? ValueY { get; set; } 8 | } 9 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ChartControl/FinancialSeriesExample/FinancialSeriesView.xaml.cs: -------------------------------------------------------------------------------- 1 | using QSF.Views; 2 | 3 | namespace QSF.Examples.ChartControl.FinancialSeriesExample; 4 | 5 | public partial class FinancialSeriesView : GalleryExampleViewBase 6 | { 7 | public FinancialSeriesView() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ChartControl/LineSeriesExample/LineSeriesView.xaml.cs: -------------------------------------------------------------------------------- 1 | using QSF.Views; 2 | 3 | namespace QSF.Examples.ChartControl.LineSeriesExample; 4 | 5 | public partial class LineSeriesView : GalleryExampleViewBase 6 | { 7 | public LineSeriesView() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ChartControl/NullValuesExample/NullValuesView.xaml.cs: -------------------------------------------------------------------------------- 1 | using QSF.Views; 2 | 3 | namespace QSF.Examples.ChartControl.NullValuesExample; 4 | 5 | public partial class NullValuesView : GalleryExampleViewBase 6 | { 7 | public NullValuesView() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ChartControl/PieDonutSeriesExample/PieDonutSeriesView.xaml.cs: -------------------------------------------------------------------------------- 1 | using QSF.Views; 2 | 3 | namespace QSF.Examples.ChartControl.PieDonutSeriesExample; 4 | 5 | public partial class PieDonutSeriesView : GalleryExampleViewBase 6 | { 7 | public PieDonutSeriesView() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ChartControl/ScatterSeriesExample/ScatterSeriesView.xaml.cs: -------------------------------------------------------------------------------- 1 | using QSF.Views; 2 | 3 | namespace QSF.Examples.ChartControl.ScatterSeriesExample; 4 | 5 | public partial class ScatterSeriesView : GalleryExampleViewBase 6 | { 7 | public ScatterSeriesView() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ChatControl/ChatRoomExample/Models/ChatroomMessage.cs: -------------------------------------------------------------------------------- 1 | using Telerik.Maui.Controls; 2 | 3 | namespace QSF.Examples.ChatControl.ChatRoomExample; 4 | 5 | public class ChatroomMessage : NotifyPropertyChangedBase 6 | { 7 | } 8 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ChatControl/ConfigurationExample/ConfigurationArea.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Examples.ChatControl.ConfigurationExample; 4 | 5 | public partial class ConfigurationArea : ContentView 6 | { 7 | public ConfigurationArea() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ChatControl/ConfigurationExample/ConfigurationView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Examples.ChatControl.ConfigurationExample; 4 | 5 | public partial class ConfigurationView : ContentView 6 | { 7 | public ConfigurationView() 8 | { 9 | this.InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ChatControl/ConfigurationExample/MessageRenderMode.cs: -------------------------------------------------------------------------------- 1 | namespace QSF.Examples.ChatControl.ConfigurationExample; 2 | 3 | public enum MessageRenderMode 4 | { 5 | Inline, 6 | Inside 7 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ChatControl/ConfigurationExample/MessageType.cs: -------------------------------------------------------------------------------- 1 | namespace QSF.Examples.ChatControl.ConfigurationExample; 2 | 3 | public enum MessageType 4 | { 5 | Text, 6 | List, 7 | Calendar, 8 | Timespan, 9 | Image, 10 | Card 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ChatControl/ThemingExample/ThemingView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Telerik.Maui.Controls; 2 | 3 | namespace QSF.Examples.ChatControl.ThemingExample; 4 | 5 | public partial class ThemingView : RadContentView 6 | { 7 | public ThemingView() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ChatControl/TravelAssistanceExample/Models/ActivityRoot.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | 3 | namespace QSF.Examples.ChatControl.TravelAssistanceExample.Models; 4 | 5 | public class ActivityRoot 6 | { 7 | public List Activities { get; set; } 8 | public string Watermark { get; set; } 9 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ChatControl/TravelAssistanceExample/Models/AdaptiveCard.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | 3 | namespace QSF.Examples.ChatControl.TravelAssistanceExample.Models; 4 | 5 | public class AdaptiveCard 6 | { 7 | public List Body { get; set; } 8 | public string TType { get; set; } 9 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ChatControl/TravelAssistanceExample/Models/AdaptiveColumnSet.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | 3 | namespace QSF.Examples.ChatControl.TravelAssistanceExample.Models; 4 | 5 | public class AdaptiveColumnSet : AdaptiveElement 6 | { 7 | public List Columns { get; set; } 8 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ChatControl/TravelAssistanceExample/Models/AdaptiveContainer.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | 3 | namespace QSF.Examples.ChatControl.TravelAssistanceExample.Models; 4 | 5 | public class AdaptiveContainer : AdaptiveElement 6 | { 7 | public List Items { get; set; } 8 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ChatControl/TravelAssistanceExample/Models/AdaptiveImage.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace QSF.Examples.ChatControl.TravelAssistanceExample.Models; 4 | 5 | public class AdaptiveImage : AdaptiveElement 6 | { 7 | public Uri Url { get; set; } 8 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ChatControl/TravelAssistanceExample/Models/AdaptiveTextBlock.cs: -------------------------------------------------------------------------------- 1 | namespace QSF.Examples.ChatControl.TravelAssistanceExample.Models; 2 | 3 | public class AdaptiveTextBlock : AdaptiveElement 4 | { 5 | public string Text { get; set; } 6 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ChatControl/TravelAssistanceExample/Models/AirlineCompany.cs: -------------------------------------------------------------------------------- 1 | namespace QSF.Examples.ChatControl.TravelAssistanceExample.Models; 2 | 3 | public class AirlineCompany 4 | { 5 | public string Name { get; set; } 6 | public string CompanyLogo { get; set; } 7 | public string Value { get; set; } 8 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ChatControl/TravelAssistanceExample/Models/Attachment.cs: -------------------------------------------------------------------------------- 1 | namespace QSF.Examples.ChatControl.TravelAssistanceExample.Models; 2 | 3 | public class Attachment 4 | { 5 | public string ContentUrl { get; set; } 6 | public string ContentType { get; set; } 7 | public object Content { get; set; } 8 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ChatControl/TravelAssistanceExample/Models/CardAction.cs: -------------------------------------------------------------------------------- 1 | namespace QSF.Examples.ChatControl.TravelAssistanceExample.Models; 2 | 3 | public class CardAction 4 | { 5 | public string Type { get; set; } 6 | public string Title { get; set; } 7 | public string Image { get; set; } 8 | public object Value { get; set; } 9 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ChatControl/TravelAssistanceExample/Models/CardImage.cs: -------------------------------------------------------------------------------- 1 | namespace QSF.Examples.ChatControl.TravelAssistanceExample.Models; 2 | 3 | public class CardImage 4 | { 5 | public string Url { get; set; } 6 | public string Alt { get; set; } 7 | public CardAction Tap { get; set; } 8 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ChatControl/TravelAssistanceExample/Models/Conversation.cs: -------------------------------------------------------------------------------- 1 | namespace QSF.Examples.ChatControl.TravelAssistanceExample.Models; 2 | 3 | public class Conversation 4 | { 5 | public string ConversationId { get; set; } 6 | public string Token { get; set; } 7 | public string StreamUrl { get; set; } 8 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ChatControl/TravelAssistanceExample/Models/ConversationAccount.cs: -------------------------------------------------------------------------------- 1 | namespace QSF.Examples.ChatControl.TravelAssistanceExample.Models; 2 | 3 | public class ConversationAccount 4 | { 5 | public string Id { get; set; } 6 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ChatControl/TravelAssistanceExample/Models/Sender.cs: -------------------------------------------------------------------------------- 1 | namespace QSF.Examples.ChatControl.TravelAssistanceExample.Models; 2 | 3 | public class Sender 4 | { 5 | public string Id { get; set; } 6 | public string Name { get; set; } 7 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ChatControl/TravelAssistanceExample/Models/SuggestedActions.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | 3 | namespace QSF.Examples.ChatControl.TravelAssistanceExample.Models; 4 | 5 | public class SuggestedActions 6 | { 7 | public List Actions { get; set; } 8 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ChatControl/TravelAssistanceExample/Models/TravelCardAction.cs: -------------------------------------------------------------------------------- 1 | namespace QSF.Examples.ChatControl.TravelAssistanceExample.Models; 2 | 3 | public class TravelCardAction 4 | { 5 | public string DestinationName { get; set; } 6 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ChatControl/TravelAssistanceExample/TravelAssistanceView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Telerik.Maui.Controls; 2 | 3 | namespace QSF.Examples.ChatControl.TravelAssistanceExample; 4 | 5 | public partial class TravelAssistanceView : RadContentView 6 | { 7 | public TravelAssistanceView() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/CheckBoxControl/ThemingExample/ThemingView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Telerik.Maui.Controls; 2 | 3 | namespace QSF.Examples.CheckBoxControl.ThemingExample; 4 | 5 | public partial class ThemingView : RadContentView 6 | { 7 | public ThemingView() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/CollectionViewControl/DragDropExample/DragDropView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Examples.CollectionViewControl.DragDropExample; 4 | 5 | public partial class DragDropView : ContentView 6 | { 7 | public DragDropView() 8 | { 9 | InitializeComponent(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/CollectionViewControl/FirstLookExample/FirstLookView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Examples.CollectionViewControl.FirstLookExample; 4 | 5 | public partial class FirstLookView : ContentView 6 | { 7 | public FirstLookView() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/CollectionViewControl/GridLayoutExample/ConfigurationArea.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Examples.CollectionViewControl.GridLayoutExample; 4 | 5 | public partial class ConfigurationArea : ContentView 6 | { 7 | public ConfigurationArea() 8 | { 9 | this.InitializeComponent(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/CollectionViewControl/GroupingExample/GroupingView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Examples.CollectionViewControl.GroupingExample; 4 | 5 | public partial class GroupingView : ContentView 6 | { 7 | public GroupingView() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/CollectionViewControl/HeaderFooterExample/HeaderFooterView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Examples.CollectionViewControl.HeaderFooterExample; 4 | 5 | public partial class HeaderFooterView : ContentView 6 | { 7 | public HeaderFooterView() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/CollectionViewControl/LoadOnDemandExample/ConfigurationArea.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Examples.CollectionViewControl.LoadOnDemandExample; 4 | 5 | public partial class ConfigurationArea : ContentView 6 | { 7 | public ConfigurationArea() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/CollectionViewControl/LoadOnDemandExample/LoadOnDemandView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Examples.CollectionViewControl.LoadOnDemandExample; 4 | 5 | public partial class LoadOnDemandView : ContentView 6 | { 7 | public LoadOnDemandView() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/CollectionViewControl/PullToRefreshExample/PullToRefreshView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Examples.CollectionViewControl.PullToRefreshExample; 4 | 5 | public partial class PullToRefreshView : ContentView 6 | { 7 | public PullToRefreshView() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/CollectionViewControl/PullToRefreshExample/Recipe.cs: -------------------------------------------------------------------------------- 1 | namespace QSF.Examples.CollectionViewControl.PullToRefreshExample 2 | { 3 | public class Recipe 4 | { 5 | public string Name { get; set; } 6 | 7 | public string Description { get; set; } 8 | 9 | public string Icon { get; set; } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ComboBoxControl/ConfigurationExample/ConfigurationView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Examples.ComboBoxControl.ConfigurationExample; 4 | 5 | public partial class ConfigurationView : ContentView 6 | { 7 | public ConfigurationView() 8 | { 9 | this.InitializeComponent(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ComboBoxControl/FilteringExample/ComboBoxConstants.xaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ComboBoxControl/FilteringExample/FilteringView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Examples.ComboBoxControl.FilteringExample; 4 | 5 | public partial class FilteringView : ContentView 6 | { 7 | public FilteringView() 8 | { 9 | this.InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/DataFormControl/CustomEditorsExample/CustomEditorsViewModel.cs: -------------------------------------------------------------------------------- 1 | using QSF.ViewModels; 2 | 3 | namespace QSF.Examples.DataFormControl.CustomEditorsExample; 4 | 5 | public class CustomEditorsViewModel : ExampleViewModel 6 | { 7 | } 8 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/DataFormControl/CustomizationExample/CustomizationViewModel.cs: -------------------------------------------------------------------------------- 1 | using QSF.ViewModels; 2 | 3 | namespace QSF.Examples.DataFormControl.CustomizationExample; 4 | 5 | public class CustomizationViewModel : ExampleViewModel 6 | { 7 | } 8 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/DataFormControl/CustomizationExample/GenderType.cs: -------------------------------------------------------------------------------- 1 | namespace QSF.Examples.DataFormControl.CustomizationExample; 2 | 3 | public enum GenderType 4 | { 5 | Male, 6 | Female 7 | } 8 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/DataFormControl/FirstLookExample/FirstLookViewModel.cs: -------------------------------------------------------------------------------- 1 | using QSF.ViewModels; 2 | 3 | namespace QSF.Examples.DataFormControl.FirstLookExample; 4 | 5 | public class FirstLookViewModel : ExampleViewModel 6 | { 7 | } 8 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/DataFormControl/FirstLookExample/ReservationType.cs: -------------------------------------------------------------------------------- 1 | namespace QSF.Examples.DataFormControl.FirstLookExample; 2 | 3 | public enum ReservationType 4 | { 5 | Phone, 6 | Reception, 7 | Online 8 | } 9 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/DataFormControl/FirstLookExample/SectionType.cs: -------------------------------------------------------------------------------- 1 | namespace QSF.Examples.DataFormControl.FirstLookExample; 2 | 3 | public enum SectionType 4 | { 5 | Terrace, 6 | Hall, 7 | Loft, 8 | Ballroom 9 | } 10 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/DataGridControl/AggregateSupportExample/ConfigurationArea.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Examples.DataGridControl.AggregateSupportExample; 4 | 5 | public partial class ConfigurationArea : ContentView 6 | { 7 | public ConfigurationArea() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/DataGridControl/BillionCellsExample/DataItem.cs: -------------------------------------------------------------------------------- 1 | namespace QSF.Examples.DataGridControl.BillionCellsExample 2 | { 3 | public class DataItem 4 | { 5 | public DataItem(int id) 6 | { 7 | this.ID = id; 8 | } 9 | 10 | public int ID { get; set; } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/DataGridControl/CustomizationExample/CustomizationView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Examples.DataGridControl.CustomizationExample; 4 | 5 | public partial class CustomizationView : ContentView 6 | { 7 | public CustomizationView() 8 | { 9 | this.InitializeComponent(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/DataGridControl/DataFormattingExample/DataFormattingView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Examples.DataGridControl.DataFormattingExample; 4 | 5 | public partial class DataFormattingView : ContentView 6 | { 7 | public DataFormattingView() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/DataGridControl/EmptyTemplateExample/ConfigurationArea.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Examples.DataGridControl.EmptyTemplateExample; 4 | 5 | public partial class ConfigurationArea : ContentView 6 | { 7 | public ConfigurationArea() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/DataGridControl/FirstLookExample/FirstLookView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Examples.DataGridControl.FirstLookExample; 4 | 5 | public partial class FirstLookView : ContentView 6 | { 7 | public FirstLookView() 8 | { 9 | this.InitializeComponent(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/DataGridControl/GroupingExample/ConfigurationArea.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Examples.DataGridControl.GroupingExample; 4 | 5 | public partial class ConfigurationArea : ContentView 6 | { 7 | public ConfigurationArea() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/DataGridControl/GroupingExample/GroupingView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Examples.DataGridControl.GroupingExample; 4 | 5 | public partial class GroupingView : ContentView 6 | { 7 | public GroupingView() 8 | { 9 | this.InitializeComponent(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/DataGridControl/RowDetailsExample/ConfigurationArea.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Examples.DataGridControl.RowDetailsExample; 4 | 5 | public partial class ConfigurationArea : ContentView 6 | { 7 | public ConfigurationArea() 8 | { 9 | this.InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/DataGridControl/RowDetailsExample/RowDetailsResources.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Examples.DataGridControl.RowDetailsExample; 4 | 5 | public partial class RowDetailsResources : ResourceDictionary 6 | { 7 | public RowDetailsResources() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/DataGridControl/SearchAsYouTypeExample/ConfigurationArea.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Examples.DataGridControl.SearchAsYouTypeExample; 4 | 5 | public partial class ConfigurationArea : ContentView 6 | { 7 | public ConfigurationArea() 8 | { 9 | this.InitializeComponent(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/DataGridControl/SearchAsYouTypeExample/SearchAsYouTypeView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Examples.DataGridControl.SearchAsYouTypeExample; 4 | 5 | public partial class SearchAsYouTypeView : ContentView 6 | { 7 | public SearchAsYouTypeView() 8 | { 9 | this.InitializeComponent(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/DataGridControl/SelectionExample/ConfigurationArea.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Examples.DataGridControl.SelectionExample; 4 | 5 | public partial class ConfigurationArea : ContentView 6 | { 7 | public ConfigurationArea() 8 | { 9 | this.InitializeComponent(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/DataGridControl/SelectionExample/SelectionView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Examples.DataGridControl.SelectionExample; 4 | 5 | public partial class SelectionView : ContentView 6 | { 7 | public SelectionView() 8 | { 9 | this.InitializeComponent(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/DataGridControl/ThemingExample/ThemingView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Telerik.Maui.Controls; 2 | 3 | namespace QSF.Examples.DataGridControl.ThemingExample; 4 | 5 | public partial class ThemingView : RadContentView 6 | { 7 | public ThemingView() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/DataGridControl/VariousDataSourcesExample/ConfigurationArea.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Examples.DataGridControl.VariousDataSourcesExample; 4 | 5 | public partial class ConfigurationArea : ContentView 6 | { 7 | public ConfigurationArea() 8 | { 9 | this.InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/DataPagerControl/FirstLookExample/FirstLookView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Examples.DataPagerControl.FirstLookExample; 4 | 5 | public partial class FirstLookView : ContentView 6 | { 7 | public FirstLookView() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/DockLayoutControl/FirstLookExample/FirstLookView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Examples.DockLayoutControl.FirstLookExample; 4 | 5 | public partial class FirstLookView : ContentView 6 | { 7 | public FirstLookView() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/EntryControl/ConfigurationExample/ConfigurationView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Examples.EntryControl.ConfigurationExample; 4 | 5 | public partial class ConfigurationView : ContentView 6 | { 7 | public ConfigurationView() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/EntryControl/FirstLookExample/FirstLookView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Examples.EntryControl.FirstLookExample; 4 | 5 | public partial class FirstLookView : ContentView 6 | { 7 | public FirstLookView() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/GridSplitterControl/FirstLookExample/ImageMetadataPropertyItem.cs: -------------------------------------------------------------------------------- 1 | namespace QSF.Examples.GridSplitterControl.FirstLookExample; 2 | 3 | public class ImageMetadataPropertyItem 4 | { 5 | public string Title { get; set; } 6 | 7 | public string Value { get; set; } 8 | } 9 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/GridSplitterControl/FirstLookExample/PropertyItemBaseInfo.cs: -------------------------------------------------------------------------------- 1 | namespace QSF.Examples.GridSplitterControl.FirstLookExample; 2 | 3 | public class PropertyItemBaseInfo 4 | { 5 | public string Title { get; set; } 6 | 7 | public string Size { get; set; } 8 | 9 | public string Tags { get; set; } 10 | } 11 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ImageEditorControl/FirstLookExample/FirstLookViewModel.cs: -------------------------------------------------------------------------------- 1 | using QSF.ViewModels; 2 | 3 | namespace QSF.Examples.ImageEditorControl.FirstLookExample 4 | { 5 | public class FirstLookViewModel : ExampleViewModel 6 | { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ImageEditorControl/FirstLookExample/ImageModel.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Examples.ImageEditorControl.FirstLookExample 4 | { 5 | public class ImageModel 6 | { 7 | public string ImagePath { get; set; } 8 | public ImageSource ImageSource { get; set; } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/MapControl/FirstLookExample/usa.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Examples/MapControl/FirstLookExample/usa.dbf -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/MapControl/FirstLookExample/usa.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Examples/MapControl/FirstLookExample/usa.shp -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/NavigationViewControl/ConfigurationExample/ConfigurationArea.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Examples.NavigationViewControl.ConfigurationExample; 4 | 5 | public partial class ConfigurationArea : ContentView 6 | { 7 | public ConfigurationArea() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/NavigationViewControl/DataBindingExample/DataBindingView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Telerik.Maui.Controls; 2 | 3 | namespace QSF.Examples.NavigationViewControl.DataBindingExample; 4 | 5 | public partial class DataBindingView : RadContentView 6 | { 7 | public DataBindingView() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/NavigationViewControl/DataBindingExample/MailBox.cs: -------------------------------------------------------------------------------- 1 | namespace QSF.Examples.NavigationViewControl.DataBindingExample; 2 | 3 | public class MailBox 4 | { 5 | public string Text { get; set; } 6 | public string Icon { get; set; } 7 | public int Number { get; set; } 8 | public bool HasMail { get; set; } 9 | } 10 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/NumericInputControl/FirstLookExample/Gender.cs: -------------------------------------------------------------------------------- 1 | namespace QSF.Examples.NumericInputControl.FirstLookExample; 2 | 3 | public enum Gender 4 | { 5 | Female, 6 | Male 7 | } 8 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/PathControl/FiguresExample/FiguresView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Examples.PathControl.FiguresExample; 4 | 5 | public partial class FiguresView : ContentView 6 | { 7 | public FiguresView() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/PdfProcessingControl/FirstLookExample/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Examples/PdfProcessingControl/FirstLookExample/banner.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/PdfProcessingControl/FirstLookExample/progressLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Examples/PdfProcessingControl/FirstLookExample/progressLogo.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/PdfViewerControl/Common/large_pdf_file.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Examples/PdfViewerControl/Common/large_pdf_file.pdf -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/PdfViewerControl/Common/pdf_file.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Examples/PdfViewerControl/Common/pdf_file.pdf -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/PdfViewerControl/ConfigurationExample/ConfigurationArea.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Examples.PdfViewerControl.ConfigurationExample; 4 | 5 | public partial class ConfigurationArea : ContentView 6 | { 7 | public ConfigurationArea() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ProgressBarControl/ThemingExample/ThemingView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Telerik.Maui.Controls; 2 | 3 | namespace QSF.Examples.ProgressBarControl.ThemingExample; 4 | 5 | public partial class ThemingView : RadContentView 6 | { 7 | public ThemingView() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/RangeSliderControl/ThemingExample/ThemingView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Telerik.Maui.Controls; 2 | 3 | namespace QSF.Examples.RangeSliderControl.ThemingExample; 4 | 5 | public partial class ThemingView : RadContentView 6 | { 7 | public ThemingView() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/RatingControl/RestaurantReviewExample/RestaurantReviewView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Examples.RatingControl.RestaurantReviewExample; 4 | 5 | public partial class RestaurantReviewView : ContentView 6 | { 7 | public RestaurantReviewView() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/RatingControl/ThemingExample/ThemingView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Telerik.Maui.Controls; 2 | 3 | namespace QSF.Examples.RatingControl.ThemingExample; 4 | 5 | public partial class ThemingView : RadContentView 6 | { 7 | public ThemingView() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/RichTextEditorControl/ImportExportExample/DocumentType.cs: -------------------------------------------------------------------------------- 1 | namespace QSF.Examples.RichTextEditorControl.ImportExportExample; 2 | 3 | public enum DocumentType 4 | { 5 | Html, 6 | Pdf, 7 | Docx, 8 | Rtf, 9 | Txt 10 | } 11 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/RichTextEditorControl/ImportExportExample/ExportView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Telerik.Maui.Controls; 2 | 3 | namespace QSF.Examples.RichTextEditorControl.ImportExportExample; 4 | 5 | public partial class ExportView : RadContentView 6 | { 7 | public ExportView() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/RichTextEditorControl/ImportExportExample/IRichTextContext.cs: -------------------------------------------------------------------------------- 1 | using System.Threading.Tasks; 2 | 3 | namespace QSF.Examples.RichTextEditorControl.ImportExportExample; 4 | 5 | public interface IRichTextContext 6 | { 7 | Task GetHtmlAsync(); 8 | } 9 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/RichTextEditorControl/ImportExportExample/ImportExportViewModel.cs: -------------------------------------------------------------------------------- 1 | using QSF.ViewModels; 2 | 3 | namespace QSF.Examples.RichTextEditorControl.ImportExportExample; 4 | 5 | public class ImportExportViewModel : ExampleViewModel 6 | { 7 | } 8 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/RichTextEditorControl/ImportExportExample/ImportView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Telerik.Maui.Controls; 2 | 3 | namespace QSF.Examples.RichTextEditorControl.ImportExportExample; 4 | 5 | public partial class ImportView : RadContentView 6 | { 7 | public ImportView() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/RichTextEditorControl/ImportExportExample/SampleResource.cs: -------------------------------------------------------------------------------- 1 | namespace QSF.Examples.RichTextEditorControl.ImportExportExample; 2 | 3 | public class SampleResource 4 | { 5 | public string ResourceFileType { get; set; } 6 | public string ResourceFileName { get; set; } 7 | public string ResourceIconPath { get; set; } 8 | } 9 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/SchedulerControl/ConfigurationExample/ConfigurationArea.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Examples.SchedulerControl.ConfigurationExample; 4 | 5 | public partial class ConfigurationArea : ContentView 6 | { 7 | public ConfigurationArea() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/SchedulerControl/CustomDateFormatsExample/CustomDateFormatsView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Examples.SchedulerControl.CustomDateFormatsExample; 4 | 5 | public partial class CustomDateFormatsView : ContentView 6 | { 7 | public CustomDateFormatsView() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/SliderControl/ThemingExample/ThemingView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Telerik.Maui.Controls; 2 | 3 | namespace QSF.Examples.SliderControl.ThemingExample; 4 | 5 | public partial class ThemingView : RadContentView 6 | { 7 | public ThemingView() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/SpreadProcessingControl/ConditionalFormattingExample/SpreadProcessingDocument2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Examples/SpreadProcessingControl/ConditionalFormattingExample/SpreadProcessingDocument2.xlsx -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/SpreadProcessingControl/ConvertExample/SpreadProcessingDocument1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Examples/SpreadProcessingControl/ConvertExample/SpreadProcessingDocument1.xlsx -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/SpreadStreamProcessingControl/ImportSpreadsheetExample/sample.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Examples/SpreadStreamProcessingControl/ImportSpreadsheetExample/sample.xlsx -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/TabViewControl/ConfigurationExample/ConfigurationArea.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Examples.TabViewControl.ConfigurationExample; 4 | 5 | public partial class ConfigurationArea : ContentView 6 | { 7 | public ConfigurationArea() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/TabViewControl/ConfigurationExample/ConfigurationView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Examples.TabViewControl.ConfigurationExample; 4 | 5 | public partial class ConfigurationView : ContentView 6 | { 7 | public ConfigurationView() 8 | { 9 | this.InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/TabViewControl/ConfigurationExample/Customer.cs: -------------------------------------------------------------------------------- 1 | namespace QSF.Examples.TabViewControl.ConfigurationExample; 2 | 3 | public class Customer 4 | { 5 | public string Name { get; set; } 6 | public int Number { get; set; } 7 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/TabViewControl/ConfigurationExample/Location.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.ObjectModel; 2 | 3 | namespace QSF.Examples.TabViewControl.ConfigurationExample; 4 | 5 | public class Location 6 | { 7 | public string Name { get; set; } 8 | public ObservableCollection Customers { get; set; } 9 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/TemplatedPickerControl/Common/StylesAndTemplates.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Examples.TemplatedPickerControl.Common; 4 | 5 | public partial class StylesAndTemplates : ResourceDictionary 6 | { 7 | public StylesAndTemplates() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ToolbarControl/FirstLookExample/FirstLookView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Telerik.Maui.Controls; 2 | 3 | namespace QSF.Examples.ToolbarControl.FirstLookExample; 4 | 5 | public partial class FirstLookView : RadContentView 6 | { 7 | public FirstLookView() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/TreeDataGridControl/Common/DataSourcePaths.cs: -------------------------------------------------------------------------------- 1 | namespace QSF.Examples.TreeDataGridControl.Common; 2 | 3 | public static class DataSourcePaths 4 | { 5 | public static string FolderDataSource = "FolderDataSource.xml"; 6 | public static string EmployeeDataSource = "EmployeeDataSource.xml"; 7 | } 8 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/TreeDataGridControl/FirstLookExample/FirstLookView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Examples.TreeDataGridControl.FirstLookExample; 4 | 5 | public partial class FirstLookView : ContentView 6 | { 7 | public FirstLookView() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/TreeDataGridControl/ThemingExample/ThemingView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Telerik.Maui.Controls; 2 | 3 | namespace QSF.Examples.TreeDataGridControl.ThemingExample; 4 | 5 | public partial class ThemingView : RadContentView 6 | { 7 | public ThemingView() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/TreeViewControl/ConfigurationExample/ConfigurationArea.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Examples.TreeViewControl.ConfigurationExample; 4 | 5 | public partial class ConfigurationArea : ContentView 6 | { 7 | public ConfigurationArea() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/TreeViewControl/LoadOnDemandExample/LoadOnDemandView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Telerik.Maui.Controls; 2 | 3 | namespace QSF.Examples.TreeViewControl.LoadOnDemandExample; 4 | 5 | public partial class LoadOnDemandView : RadContentView 6 | { 7 | public LoadOnDemandView() 8 | { 9 | this.InitializeComponent(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/TreeViewControl/ThemingExample/ThemingView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Telerik.Maui.Controls; 2 | 3 | namespace QSF.Examples.TreeViewControl.ThemingExample; 4 | 5 | public partial class ThemingView : RadContentView 6 | { 7 | public ThemingView() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/WordsProcessingControl/ExportExample/DocToBeProcessed.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Examples/WordsProcessingControl/ExportExample/DocToBeProcessed.docx -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/WordsProcessingControl/FindAndReplaceExample/JohnGrisham.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Examples/WordsProcessingControl/FindAndReplaceExample/JohnGrisham.docx -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/WordsProcessingControl/NumberingFields/SampleDocument.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Examples/WordsProcessingControl/NumberingFields/SampleDocument.docx -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/WordsProcessingControl/TableOfContentsExample/TableOfContents.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Examples/WordsProcessingControl/TableOfContentsExample/TableOfContents.docx -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ZipLibraryControl/CreateArchiveExample/Resources/ZipSampleDocuments/Balance Sheet.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Examples/ZipLibraryControl/CreateArchiveExample/Resources/ZipSampleDocuments/Balance Sheet.xlsx -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ZipLibraryControl/CreateArchiveExample/Resources/ZipSampleDocuments/Book.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Examples/ZipLibraryControl/CreateArchiveExample/Resources/ZipSampleDocuments/Book.pdf -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ZipLibraryControl/CreateArchiveExample/Resources/ZipSampleDocuments/Food Order.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Examples/ZipLibraryControl/CreateArchiveExample/Resources/ZipSampleDocuments/Food Order.xlsx -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ZipLibraryControl/CreateArchiveExample/Resources/ZipSampleDocuments/Freeze Panes.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Examples/ZipLibraryControl/CreateArchiveExample/Resources/ZipSampleDocuments/Freeze Panes.xlsx -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ZipLibraryControl/CreateArchiveExample/Resources/ZipSampleDocuments/Monthly Report.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Examples/ZipLibraryControl/CreateArchiveExample/Resources/ZipSampleDocuments/Monthly Report.xlsx -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ZipLibraryControl/CreateArchiveExample/Resources/ZipSampleDocuments/Multipage Document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Examples/ZipLibraryControl/CreateArchiveExample/Resources/ZipSampleDocuments/Multipage Document.pdf -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ZipLibraryControl/CreateArchiveExample/Resources/ZipSampleDocuments/Orders Log.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Examples/ZipLibraryControl/CreateArchiveExample/Resources/ZipSampleDocuments/Orders Log.xlsx -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ZipLibraryControl/CreateArchiveExample/Resources/ZipSampleDocuments/Printing.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Examples/ZipLibraryControl/CreateArchiveExample/Resources/ZipSampleDocuments/Printing.xlsx -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ZipLibraryControl/CreateArchiveExample/Resources/ZipSampleDocuments/RadImageEditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Examples/ZipLibraryControl/CreateArchiveExample/Resources/ZipSampleDocuments/RadImageEditor.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ZipLibraryControl/CreateArchiveExample/Resources/ZipSampleDocuments/RadRichTextBox.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Examples/ZipLibraryControl/CreateArchiveExample/Resources/ZipSampleDocuments/RadRichTextBox.docx -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ZipLibraryControl/CreateArchiveExample/Resources/ZipSampleDocuments/RepeatHeaderRows.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Examples/ZipLibraryControl/CreateArchiveExample/Resources/ZipSampleDocuments/RepeatHeaderRows.docx -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ZipLibraryControl/CreateArchiveExample/Resources/ZipSampleDocuments/Sample.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Examples/ZipLibraryControl/CreateArchiveExample/Resources/ZipSampleDocuments/Sample.pdf -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ZipLibraryControl/CreateArchiveExample/Resources/ZipSampleDocuments/photo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Examples/ZipLibraryControl/CreateArchiveExample/Resources/ZipSampleDocuments/photo1.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ZipLibraryControl/CreateArchiveExample/Resources/ZipSampleDocuments/photo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Examples/ZipLibraryControl/CreateArchiveExample/Resources/ZipSampleDocuments/photo2.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ZipLibraryControl/CreateArchiveExample/Resources/ZipSampleDocuments/photo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Examples/ZipLibraryControl/CreateArchiveExample/Resources/ZipSampleDocuments/photo3.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Examples/ZipLibraryControl/CreateArchiveExample/Resources/ZipSampleDocuments/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Examples/ZipLibraryControl/CreateArchiveExample/Resources/ZipSampleDocuments/thumbnail.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/GlobalUsings.cs: -------------------------------------------------------------------------------- 1 | global using System; -------------------------------------------------------------------------------- /Samples/ControlsSamples/Helpers/MouseCursorType.cs: -------------------------------------------------------------------------------- 1 | namespace QSF.Helpers; 2 | 3 | public enum MouseCursorType 4 | { 5 | Arrow, 6 | Hand, 7 | IBeam, 8 | } 9 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Layouts/QGrid/QGrid.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | using Microsoft.Maui.Layouts; 3 | 4 | namespace QSF.Layouts; 5 | 6 | public partial class QGrid : Grid 7 | { 8 | protected override ILayoutManager CreateLayoutManager() 9 | { 10 | return new QGridLayoutManager(this); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Layouts/UniformLayout/IUniformLayout.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui; 2 | 3 | namespace QSF.Layouts; 4 | 5 | public interface IUniformLayout : ILayout 6 | { 7 | UniformLayoutMode LayoutMode { get; } 8 | double Spacing { get; } 9 | } 10 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Layouts/UniformLayout/UniformLayoutMode.cs: -------------------------------------------------------------------------------- 1 | namespace QSF.Layouts; 2 | 3 | public enum UniformLayoutMode 4 | { 5 | HorizontalStretch, 6 | HorizontalStack, 7 | VerticalStretch, 8 | VerticalStack, 9 | } 10 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Pages/ControlPage.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Pages; 4 | 5 | public partial class ControlPage : ContentPage 6 | { 7 | public ControlPage() 8 | { 9 | this.InitializeComponent(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Pages/SearchPageMobile.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Pages; 4 | 5 | public partial class SearchPageMobile : ContentPage 6 | { 7 | public SearchPageMobile() 8 | { 9 | this.InitializeComponent(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Platforms/Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #512BD4 4 | #2B0B98 5 | #2B0B98 6 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Platforms/MacCatalyst/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using Foundation; 2 | using Microsoft.Maui; 3 | using Microsoft.Maui.Hosting; 4 | 5 | namespace QSF 6 | { 7 | [Register("AppDelegate")] 8 | public class AppDelegate : MauiUIApplicationDelegate 9 | { 10 | protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); 11 | } 12 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Platforms/Windows/RadImageButton.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.UI.Xaml.Controls; 2 | 3 | namespace QSF.WinUI 4 | { 5 | internal class RadImageButton : Button 6 | { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Platforms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using Foundation; 2 | using Microsoft.Maui; 3 | using Microsoft.Maui.Hosting; 4 | 5 | namespace QSF 6 | { 7 | [Register("AppDelegate")] 8 | public class AppDelegate : MauiUIApplicationDelegate 9 | { 10 | protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); 11 | } 12 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "Windows Machine": { 4 | "commandName": "MsixPackage", 5 | "nativeDebugging": false 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Fonts/telerikcontrolsicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Fonts/telerikcontrolsicons.ttf -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Fonts/telerikfontexamples.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Fonts/telerikfontexamples.ttf -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/ImageEditor/FirstLookExample/SampleImage1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/ImageEditor/FirstLookExample/SampleImage1.jpg -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/ImageEditor/FirstLookExample/SampleImage2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/ImageEditor/FirstLookExample/SampleImage2.jpg -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/ImageEditor/FirstLookExample/SampleImage3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/ImageEditor/FirstLookExample/SampleImage3.jpg -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/ImageEditor/FirstLookExample/SampleImage4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/ImageEditor/FirstLookExample/SampleImage4.jpg -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/ImageEditor/FirstLookExample/SampleImage5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/ImageEditor/FirstLookExample/SampleImage5.jpg -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/ImageEditor/FirstLookExample/SampleImage6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/ImageEditor/FirstLookExample/SampleImage6.jpg -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/american_pancakes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/american_pancakes.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/arrowleft.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/badgeview_white.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/barcodespecialoffersalad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/barcodespecialoffersalad.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/belgian_chocolate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/belgian_chocolate.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/blueberry_waffle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/blueberry_waffle.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/border_user1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/border_user1.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/borderconfigurationavatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/borderconfigurationavatar.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/busyindicator_theming_gallery10_header_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/busyindicator_theming_gallery10_header_active.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/busyindicator_theming_gallery10_header_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/busyindicator_theming_gallery10_header_inactive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/busyindicator_theming_gallery1_header_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/busyindicator_theming_gallery1_header_active.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/busyindicator_theming_gallery1_header_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/busyindicator_theming_gallery1_header_inactive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/busyindicator_theming_gallery2_header_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/busyindicator_theming_gallery2_header_active.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/busyindicator_theming_gallery2_header_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/busyindicator_theming_gallery2_header_inactive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/busyindicator_theming_gallery3_header_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/busyindicator_theming_gallery3_header_active.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/busyindicator_theming_gallery3_header_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/busyindicator_theming_gallery3_header_inactive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/busyindicator_theming_gallery4_header_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/busyindicator_theming_gallery4_header_active.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/busyindicator_theming_gallery4_header_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/busyindicator_theming_gallery4_header_inactive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/busyindicator_theming_gallery5_header_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/busyindicator_theming_gallery5_header_active.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/busyindicator_theming_gallery5_header_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/busyindicator_theming_gallery5_header_inactive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/busyindicator_theming_gallery6_header_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/busyindicator_theming_gallery6_header_active.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/busyindicator_theming_gallery6_header_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/busyindicator_theming_gallery6_header_inactive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/busyindicator_theming_gallery7_header_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/busyindicator_theming_gallery7_header_active.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/busyindicator_theming_gallery7_header_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/busyindicator_theming_gallery7_header_inactive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/busyindicator_theming_gallery8_header_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/busyindicator_theming_gallery8_header_active.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/busyindicator_theming_gallery8_header_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/busyindicator_theming_gallery8_header_inactive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/busyindicator_theming_gallery9_header_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/busyindicator_theming_gallery9_header_active.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/busyindicator_theming_gallery9_header_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/busyindicator_theming_gallery9_header_inactive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/button_background_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/button_background_image.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/button_customization_background_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/button_customization_background_image.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartarea1headeractive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartarea1headeractive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartarea1headerinactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartarea1headerinactive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartarea2headeractive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartarea2headeractive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartarea2headerinactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartarea2headerinactive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartarea3headeractive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartarea3headeractive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartarea3headerinactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartarea3headerinactive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartarea4headeractive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartarea4headeractive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartarea4headerinactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartarea4headerinactive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartbar1headeractive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartbar1headeractive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartbar1headerinactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartbar1headerinactive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartbar2headeractive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartbar2headeractive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartbar2headerinactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartbar2headerinactive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartbar3headeractive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartbar3headeractive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartbar3headerinactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartbar3headerinactive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartbar4headeractive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartbar4headeractive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartbar4headerinactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartbar4headerinactive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartbar5headeractive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartbar5headeractive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartbar5headerinactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartbar5headerinactive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartbar6headeractive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartbar6headeractive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartbar6headerinactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartbar6headerinactive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartbar7headeractive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartbar7headeractive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartbar7headerinactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartbar7headerinactive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartbar8headeractive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartbar8headeractive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartbar8headerinactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartbar8headerinactive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartdonut1headeractive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartdonut1headeractive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartdonut1headerinactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartdonut1headerinactive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartfinancial1headeractive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartfinancial1headeractive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartfinancial1headerinactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartfinancial1headerinactive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartfinancial2headeractive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartfinancial2headeractive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartfinancial2headerinactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartfinancial2headerinactive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartfinancial3headeractive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartfinancial3headeractive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartfinancial3headerinactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartfinancial3headerinactive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartline1headeractive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartline1headeractive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartline1headerinactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartline1headerinactive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartline2headeractive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartline2headeractive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartline2headerinactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartline2headerinactive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartline3headeractive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartline3headeractive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartline3headerinactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartline3headerinactive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartline4headeractive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartline4headeractive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartline4headerinactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartline4headerinactive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartpie1headeractive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartpie1headeractive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartpie1headerinactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartpie1headerinactive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartpie2headeractive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartpie2headeractive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartpie2headerinactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartpie2headerinactive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartscattered1headeractive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartscattered1headeractive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartscattered1headerinactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartscattered1headerinactive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartscattered2headeractive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartscattered2headeractive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartscattered2headerinactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartscattered2headerinactive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartscattered3headeractive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartscattered3headeractive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartscattered3headerinactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartscattered3headerinactive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartscattered4headeractive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartscattered4headeractive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartscattered4headerinactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartscattered4headerinactive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartscattered5headeractive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartscattered5headeractive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chartscattered5headerinactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chartscattered5headerinactive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chat_configuration_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chat_configuration_image.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chat_configuration_image_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chat_configuration_image_1.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/chat_configuration_image_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/chat_configuration_image_2.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/collectionview_white.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/dataform_white.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/datagrid_white.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/docx_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/docx_file.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/drive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/drive.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/flag_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/flag_1.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/flag_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/flag_2.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/flag_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/flag_3.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/flag_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/flag_4.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/flag_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/flag_5.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/flag_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/flag_6.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/icon_documentation_white.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/navigationview_firstlook_image_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/navigationview_firstlook_image_1.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/navigationview_firstlook_image_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/navigationview_firstlook_image_10.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/navigationview_firstlook_image_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/navigationview_firstlook_image_11.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/navigationview_firstlook_image_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/navigationview_firstlook_image_12.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/navigationview_firstlook_image_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/navigationview_firstlook_image_2.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/navigationview_firstlook_image_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/navigationview_firstlook_image_3.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/navigationview_firstlook_image_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/navigationview_firstlook_image_4.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/navigationview_firstlook_image_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/navigationview_firstlook_image_5.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/navigationview_firstlook_image_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/navigationview_firstlook_image_6.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/navigationview_firstlook_image_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/navigationview_firstlook_image_7.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/navigationview_firstlook_image_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/navigationview_firstlook_image_8.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/navigationview_firstlook_image_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/navigationview_firstlook_image_9.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/navigationview_white.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/pdf_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/pdf_file.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/pdfprocessingfirstlookscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/pdfprocessingfirstlookscreen.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/person_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/person_1.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/person_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/person_2.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/person_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/person_3.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/person_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/person_4.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/person_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/person_5.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/person_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/person_6.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/person_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/person_7.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/person_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/person_8.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/person_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/person_9.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/png_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/png_file.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/property_item_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/property_item_1.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/property_item_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/property_item_10.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/property_item_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/property_item_11.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/property_item_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/property_item_12.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/property_item_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/property_item_2.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/property_item_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/property_item_3.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/property_item_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/property_item_4.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/property_item_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/property_item_5.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/property_item_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/property_item_6.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/property_item_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/property_item_7.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/property_item_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/property_item_8.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/property_item_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/property_item_9.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/salad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/salad.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/salad_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/salad_1.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/salad_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/salad_2.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/salad_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/salad_3.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/salad_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/salad_4.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/selected_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/selected_item.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/tech_news_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/tech_news_1.jpg -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/tech_news_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/tech_news_10.jpg -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/tech_news_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/tech_news_11.jpg -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/tech_news_12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/tech_news_12.jpg -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/tech_news_13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/tech_news_13.jpg -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/tech_news_14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/tech_news_14.jpg -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/tech_news_15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/tech_news_15.jpg -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/tech_news_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/tech_news_2.jpg -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/tech_news_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/tech_news_3.jpg -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/tech_news_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/tech_news_4.jpg -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/tech_news_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/tech_news_5.jpg -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/tech_news_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/tech_news_6.jpg -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/tech_news_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/tech_news_7.jpg -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/tech_news_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/tech_news_8.jpg -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/tech_news_9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/tech_news_9.jpg -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/tiramisu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/tiramisu.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/unselected_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/unselected_item.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/vacationbot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/vacationbot.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/Images/xlsx_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/Images/xlsx_file.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/RichTextEditor/Emojis/emoji_amazed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/RichTextEditor/Emojis/emoji_amazed.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/RichTextEditor/Emojis/emoji_confused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/RichTextEditor/Emojis/emoji_confused.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/RichTextEditor/Emojis/emoji_cool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/RichTextEditor/Emojis/emoji_cool.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/RichTextEditor/Emojis/emoji_dissapointment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/RichTextEditor/Emojis/emoji_dissapointment.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/RichTextEditor/Emojis/emoji_loughing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/RichTextEditor/Emojis/emoji_loughing.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/RichTextEditor/Emojis/emoji_love.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/RichTextEditor/Emojis/emoji_love.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/RichTextEditor/Emojis/emoji_neutral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/RichTextEditor/Emojis/emoji_neutral.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/RichTextEditor/Emojis/emoji_sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/RichTextEditor/Emojis/emoji_sad.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/RichTextEditor/Emojis/emoji_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/RichTextEditor/Emojis/emoji_smile.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/RichTextEditor/Emojis/emoji_smile2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/RichTextEditor/Emojis/emoji_smile2.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/RichTextEditor/Emojis/emoji_tongue_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/RichTextEditor/Emojis/emoji_tongue_out.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/RichTextEditor/Emojis/emoji_wink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/RichTextEditor/Emojis/emoji_wink.png -------------------------------------------------------------------------------- /Samples/ControlsSamples/Resources/RichTextEditor/ImportExportExample/RichTextEditor_Overview.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/ControlsSamples/Resources/RichTextEditor/ImportExportExample/RichTextEditor_Overview.docx -------------------------------------------------------------------------------- /Samples/ControlsSamples/Services/FileViewerService.cs: -------------------------------------------------------------------------------- 1 |  2 | using QSF.Helpers; 3 | using System.IO; 4 | using System.Threading.Tasks; 5 | 6 | namespace QSF.Services 7 | { 8 | public partial class FileViewerService : IFileViewerService 9 | { 10 | 11 | } 12 | } 13 | 14 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Services/Interfaces/IConfigurationAreaService.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | using QSF.Common; 3 | 4 | namespace QSF.Services; 5 | 6 | public interface IConfigurationAreaService 7 | { 8 | public View CreateConfigurationArea(Example example); 9 | } 10 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Services/Interfaces/IConfigurationService.cs: -------------------------------------------------------------------------------- 1 | using QSF.Common; 2 | using System.Collections.Generic; 3 | 4 | namespace QSF.Services 5 | { 6 | public interface IConfigurationService 7 | { 8 | public Configuration Configuration { get; } 9 | 10 | public IEnumerable GetControlsConfiguration(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Services/Interfaces/IExampleService.cs: -------------------------------------------------------------------------------- 1 | using QSF.Common; 2 | 3 | namespace QSF.Services 4 | { 5 | public interface IExampleService 6 | { 7 | public object CreateExample(Example example); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Services/Interfaces/IFilePickerService.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | using System.Threading.Tasks; 3 | 4 | namespace QSF.Services 5 | { 6 | public interface IFilePickerService 7 | { 8 | Task PickFileAsync(string pickerTitle, params string[] fileTypes); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Services/Interfaces/IFileViewerService.cs: -------------------------------------------------------------------------------- 1 | using System.IO; 2 | using System.Threading.Tasks; 3 | 4 | namespace QSF.Services 5 | { 6 | public interface IFileViewerService 7 | { 8 | Task View(Stream stream, string filename); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Services/Interfaces/IMediaPickerService.cs: -------------------------------------------------------------------------------- 1 | using System.Threading.Tasks; 2 | 3 | namespace QSF.Services 4 | { 5 | public interface IMediaPickerService 6 | { 7 | Task PickPhotoAsync(); 8 | } 9 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Services/Interfaces/IToastMessageService.cs: -------------------------------------------------------------------------------- 1 | namespace QSF.Services; 2 | 3 | public interface IToastMessageService 4 | { 5 | void ShortAlert(string message); 6 | } 7 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Services/Search/ISearchService.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | 3 | namespace QSF.Services 4 | { 5 | public interface ISearchService 6 | { 7 | public IEnumerable Search(string text); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Services/Search/SearchResultType.cs: -------------------------------------------------------------------------------- 1 | namespace QSF.Services 2 | { 3 | public enum SearchResultType 4 | { 5 | Control, 6 | Example 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Services/Serialization/ISerializationService.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.IO; 3 | 4 | namespace QSF.Services 5 | { 6 | public interface ISerializationService 7 | { 8 | T XmlDeserializeFromStream(Stream stream); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Services/ToastMessageService.cs: -------------------------------------------------------------------------------- 1 | namespace QSF.Services; 2 | 3 | public partial class ToastMessageService : IToastMessageService 4 | { 5 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Styles/ConfigurationViewResources.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Styles; 4 | 5 | public partial class ConfigurationViewResources : ResourceDictionary 6 | { 7 | public ConfigurationViewResources() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Styles/GalleryResources.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace QSF.Styles; 4 | 5 | public partial class GalleryResources : ResourceDictionary 6 | { 7 | public GalleryResources() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/ViewModels/Search/HighlightedSearchResultType.cs: -------------------------------------------------------------------------------- 1 | namespace QSF.ViewModels 2 | { 3 | public enum HighlightedSearchResultType 4 | { 5 | Control, 6 | ControlDescription, 7 | Example, 8 | ExampleDescription, 9 | AllControls 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/ViewModels/SettingsViewModel.cs: -------------------------------------------------------------------------------- 1 | namespace QSF.ViewModels; 2 | 3 | public class SettingsViewModel : ViewModelBase 4 | { 5 | public SettingsViewModel() 6 | { 7 | this.HeaderLabel = "Settings"; 8 | } 9 | 10 | public string HeaderLabel { get; private set; } 11 | } 12 | -------------------------------------------------------------------------------- /Samples/ControlsSamples/Views/HighlightsView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | using Microsoft.Maui.Controls.Xaml; 3 | 4 | namespace QSF.Views; 5 | 6 | [XamlCompilation(XamlCompilationOptions.Compile)] 7 | public partial class HighlightsView : ContentView 8 | { 9 | public HighlightsView() 10 | { 11 | this.InitializeComponent(); 12 | } 13 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Views/HomeViewDesktop.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | using Microsoft.Maui.Controls.Xaml; 3 | 4 | namespace QSF.Views; 5 | 6 | [XamlCompilation(XamlCompilationOptions.Compile)] 7 | public partial class HomeViewDesktop : ContentView 8 | { 9 | public HomeViewDesktop() 10 | { 11 | this.InitializeComponent(); 12 | } 13 | } -------------------------------------------------------------------------------- /Samples/ControlsSamples/Views/LayoutView.xaml: -------------------------------------------------------------------------------- 1 |  2 | 5 | -------------------------------------------------------------------------------- /Samples/CryptoTracker/Data/TrendingCoinData.cs: -------------------------------------------------------------------------------- 1 | namespace CryptoTracker.Data 2 | { 3 | public class TrendingCoinData 4 | { 5 | public CoinData Data { get; set; } 6 | 7 | public int ListNumber { get; set; } 8 | 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Samples/CryptoTracker/Platforms/Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #512BD4 4 | #2B0B98 5 | #045DEA 6 | -------------------------------------------------------------------------------- /Samples/CryptoTracker/Platforms/MacCatalyst/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using Foundation; 2 | using Microsoft.Maui; 3 | using Microsoft.Maui.Hosting; 4 | 5 | namespace CryptoTracker 6 | { 7 | [Register("AppDelegate")] 8 | public class AppDelegate : MauiUIApplicationDelegate 9 | { 10 | protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); 11 | } 12 | } -------------------------------------------------------------------------------- /Samples/CryptoTracker/Platforms/Windows/App.xaml: -------------------------------------------------------------------------------- 1 |  7 | 8 | -------------------------------------------------------------------------------- /Samples/CryptoTracker/Platforms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using Foundation; 2 | using Microsoft.Maui; 3 | using Microsoft.Maui.Hosting; 4 | 5 | namespace CryptoTracker 6 | { 7 | [Register("AppDelegate")] 8 | public class AppDelegate : MauiUIApplicationDelegate 9 | { 10 | protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); 11 | } 12 | } -------------------------------------------------------------------------------- /Samples/CryptoTracker/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "Windows Machine": { 4 | "commandName": "MsixPackage", 5 | "nativeDebugging": false 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /Samples/CryptoTracker/Resources/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/CryptoTracker/Resources/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /Samples/CryptoTracker/Resources/Fonts/Ubuntu-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/CryptoTracker/Resources/Fonts/Ubuntu-MediumItalic.ttf -------------------------------------------------------------------------------- /Samples/CryptoTracker/Resources/Fonts/telerikfontexamples.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/CryptoTracker/Resources/Fonts/telerikfontexamples.ttf -------------------------------------------------------------------------------- /Samples/CryptoTracker/Resources/Images/arrowright.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/CryptoTracker/Resources/Images/download.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/CryptoTracker/Resources/appicon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Samples/CryptoTracker/Views/CoinInfoDataGridView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace CryptoTracker.Views 4 | { 5 | public partial class CoinInfoDataGridView : ContentView 6 | { 7 | public CoinInfoDataGridView() 8 | { 9 | this.InitializeComponent(); 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/.editorconfig: -------------------------------------------------------------------------------- 1 | [*.cs] 2 | 3 | # IDE0005: Using directive is unnecessary. 4 | dotnet_diagnostic.IDE0005.severity = none 5 | -------------------------------------------------------------------------------- /Samples/SdkBrowser/Common/UIAutomation.cs: -------------------------------------------------------------------------------- 1 | namespace SDKBrowserMaui.Common; 2 | 3 | internal static class UIAutomation 4 | { 5 | internal static bool IsEnabled; 6 | } 7 | -------------------------------------------------------------------------------- /Samples/SdkBrowser/Data/CategoricalData.cs: -------------------------------------------------------------------------------- 1 | namespace SDKBrowserMaui; 2 | 3 | // >> categorical-data-model 4 | public class CategoricalData 5 | { 6 | public object Category { get; set; } 7 | public double Value { get; set; } 8 | } 9 | // << categorical-data-model 10 | -------------------------------------------------------------------------------- /Samples/SdkBrowser/Data/NumericalData.cs: -------------------------------------------------------------------------------- 1 | namespace SDKBrowserMaui.Data; 2 | 3 | // >> numerical-data-model 4 | public class NumericalData 5 | { 6 | public double XData { get; set; } 7 | public double YData { get; set; } 8 | } 9 | // << numerical-data-model 10 | -------------------------------------------------------------------------------- /Samples/SdkBrowser/Data/SimpleData.cs: -------------------------------------------------------------------------------- 1 | namespace SDKBrowser; 2 | 3 | public class SimpleData 4 | { 5 | public double Value { get; set; } 6 | public string Title { get; set; } 7 | public bool IsSelected { get; set; } 8 | } 9 | -------------------------------------------------------------------------------- /Samples/SdkBrowser/Data/TemporalData.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace SDKBrowser; 4 | 5 | // >> temporal-data-model 6 | public class TemporalData 7 | { 8 | public DateTime Date { get; set; } 9 | public double Value { get; set; } 10 | } 11 | // << temporal-data-model 12 | -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/AIPromptControl/ViewsCategory/CommandsViewExample/CommandsView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.AIPromptControl.ViewsCategory.CommandsViewExample; 4 | 5 | public partial class CommandsView : ContentView 6 | { 7 | public CommandsView() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/AIPromptControl/ViewsCategory/InputOutputViewsExample/InputOutputViews.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.AIPromptControl.ViewsCategory.InputOutputViewsExample; 4 | 5 | public partial class InputOutputViews : ContentView 6 | { 7 | public InputOutputViews() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/AIPromptControl/ViewsCategory/ViewsExample/ManuallyDefinedViews.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.AIPromptControl.ViewsCategory.ViewsExample; 4 | 5 | public partial class ManuallyDefinedViews : ContentView 6 | { 7 | public ManuallyDefinedViews() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/AccordionControl/FeaturesCategory/KeyFeaturesExample/KeyFeatures.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.AccordionControl.FeaturesCategory.KeyFeaturesExample; 4 | 5 | public partial class KeyFeatures : ContentView 6 | { 7 | public KeyFeatures () 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/AutoCompleteControl/FeaturesCategory/SuggestModeExample/SuggestMode.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.AutoCompleteControl.FeaturesCategory.SuggestModeExample; 4 | 5 | public partial class SuggestMode : ContentView 6 | { 7 | public SuggestMode() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/AutoCompleteControl/FeaturesCategory/TokensExample/Tokens.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.AutoCompleteControl.FeaturesCategory.TokensExample; 4 | 5 | public partial class Tokens : ContentView 6 | { 7 | public Tokens() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/AutoCompleteControl/StylingCategory/StylingExample/Styling.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.AutoCompleteControl.StylingCategory.StylingExample; 4 | 5 | public partial class Styling : ContentView 6 | { 7 | public Styling() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/BorderControl/StylingCategory/StylingExample/Styling.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.BorderControl.StylingCategory.StylingExample; 4 | 5 | public partial class Styling : ContentView 6 | { 7 | public Styling() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/ButtonControl/FeaturesCategory/ImagesExample/Images.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.ButtonControl.FeaturesCategory.ImagesExample; 4 | 5 | public partial class Images : ContentView 6 | { 7 | public Images() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/ButtonControl/FeaturesCategory/StylingExample/Styling.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.ButtonControl.FeaturesCategory.StylingExample; 4 | 5 | public partial class Styling : ContentView 6 | { 7 | public Styling() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/CalendarControl/DisplayModeCategory/CenturyModeExample/CenturyMode.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.CalendarControl.DisplayModeCategory.CenturyModeExample; 4 | 5 | public partial class CenturyMode : ContentView 6 | { 7 | public CenturyMode() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/CalendarControl/DisplayModeCategory/DecadeModeExample/DecadeMode.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.CalendarControl.DisplayModeCategory.DecadeModeExample; 4 | 5 | public partial class DecadeMode : ContentView 6 | { 7 | public DecadeMode() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/CalendarControl/DisplayModeCategory/MonthModeExample/MonthMode.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.CalendarControl.DisplayModeCategory.MonthModeExample; 4 | 5 | public partial class MonthMode : ContentView 6 | { 7 | public MonthMode() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/CalendarControl/DisplayModeCategory/YearModeExample/YearMode.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.CalendarControl.DisplayModeCategory.YearModeExample; 4 | 5 | public partial class YearMode : ContentView 6 | { 7 | public YearMode() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/CalendarControl/FeaturesCategory/NavigationExample/Navigation.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.CalendarControl.FeaturesCategory.NavigationExample; 4 | 5 | public partial class Navigation : ContentView 6 | { 7 | public Navigation() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/CalendarControl/SelectionCategory/RangeSelectionExample/RangeSelection.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.CalendarControl.SelectionCategory.RangeSelectionExample; 4 | 5 | public partial class RangeSelection : ContentView 6 | { 7 | public RangeSelection() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/CalendarControl/StylingCategory/CalendarStylingExample/CalendarStyling.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.CalendarControl.StylingCategory.CalendarStylingExample; 4 | 5 | public partial class CalendarStyling : ContentView 6 | { 7 | public CalendarStyling() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/CalendarControl/StylingCategory/DayNamesStylingExample/DayNamesStyling.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.CalendarControl.StylingCategory.DayNamesStylingExample; 4 | 5 | public partial class DayNamesStyling : ContentView 6 | { 7 | public DayNamesStyling() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/CalendarControl/TemplatesCategory/DayTemplateExample/DayTemplate.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.CalendarControl.TemplatesCategory.DayTemplateExample; 4 | 5 | public partial class DayTemplate : ContentView 6 | { 7 | public DayTemplate() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/CalendarControl/TemplatesCategory/DecadeTemplateExample/DecadeTemplate.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.CalendarControl.TemplatesCategory.DecadeTemplateExample; 4 | 5 | public partial class DecadeTemplate : ContentView 6 | { 7 | public DecadeTemplate() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/CalendarControl/TemplatesCategory/MonthTemplateExample/MonthTemplate.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.CalendarControl.TemplatesCategory.MonthTemplateExample; 4 | 5 | public partial class MonthTemplate : ContentView 6 | { 7 | public MonthTemplate() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/CalendarControl/TemplatesCategory/YearTemplateExmaple/YearTemplate.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.CalendarControl.TemplatesCategory.YearTemplateExample; 4 | 5 | public partial class YearTemplate : ContentView 6 | { 7 | public YearTemplate() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/ChatControl/FeaturesCategory/MVVMSupportExample/MVVMSupport.xaml.cs: -------------------------------------------------------------------------------- 1 | using Telerik.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.ChatControl.FeaturesCategory.MVVMSupportExample; 4 | 5 | public partial class MVVMSupport : RadContentView 6 | { 7 | public MVVMSupport() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/CheckBoxControl/FeaturesCategory/AnimationExample/Animation.xaml.cs: -------------------------------------------------------------------------------- 1 | using Telerik.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.CheckBoxControl.FeaturesCategory.AnimationExample; 4 | 5 | public partial class Animation : RadContentView 6 | { 7 | public Animation() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/CheckBoxControl/FeaturesCategory/ConfigurationExample/Configuration.xaml.cs: -------------------------------------------------------------------------------- 1 | using Telerik.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.CheckBoxControl.FeaturesCategory.ConfigurationExample; 4 | 5 | public partial class Configuration : RadContentView 6 | { 7 | public Configuration() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/CheckBoxControl/FeaturesCategory/StylingExample/Styling.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.CheckBoxControl.FeaturesCategory.StylingExample; 4 | 5 | public partial class Styling : ContentView 6 | { 7 | public Styling() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/CheckBoxControl/FeaturesCategory/ToggleOnTapExample/ToggleOnTap.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.CheckBoxControl.FeaturesCategory.ToggleOnTapExample; 4 | 5 | public partial class ToggleOnTap : ContentView 6 | { 7 | public ToggleOnTap() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/CollectionViewControl/LayoutsCategory/GridLayoutExample/GridLayout.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.CollectionViewControl.LayoutsCategory.GridLayoutExample; 4 | 5 | public partial class GridLayout : ContentView 6 | { 7 | public GridLayout() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/CollectionViewControl/LayoutsCategory/LinearLayoutExample/LinearLayout.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.CollectionViewControl.LayoutsCategory.LinearLayoutExample; 4 | 5 | public partial class LinearLayout : ContentView 6 | { 7 | public LinearLayout() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/CollectionViewControl/StylingCategory/GroupStylingExample/GroupStyling.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.CollectionViewControl.StylingCategory.GroupStylingExample; 4 | 5 | public partial class GroupStyling : ContentView 6 | { 7 | public GroupStyling() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/CollectionViewControl/StylingCategory/ItemStyleExample/ItemStyle.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.CollectionViewControl.StylingCategory.ItemStyleExample; 4 | 5 | public partial class ItemStyle : ContentView 6 | { 7 | public ItemStyle() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/ComboBoxControl/City.cs: -------------------------------------------------------------------------------- 1 | namespace SDKBrowserMaui.Examples.ComboBoxControl 2 | { 3 | // >> combobox-city-businessmodel 4 | public class City 5 | { 6 | public string Name { get; set; } 7 | public int Population { get; set; } 8 | } 9 | // << combobox-city-businessmodel 10 | } 11 | -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/DataFormControl/EditorsCategory/CustomEditorExample/CustomEditor.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.DataFormControl.EditorsCategory.CustomEditorExample; 4 | 5 | public partial class CustomEditor : ContentView 6 | { 7 | public CustomEditor() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/DataFormControl/EditorsCategory/EditorsExample/Editors.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui; 2 | using Microsoft.Maui.Controls; 3 | 4 | namespace SDKBrowserMaui.Examples.DataFormControl.EditorsCategory.EditorsExample; 5 | 6 | public partial class Editors : ContentView 7 | { 8 | public Editors() 9 | { 10 | InitializeComponent(); 11 | } 12 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/DataFormControl/GroupingCategory/GroupingExample/Grouping.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui; 2 | using Microsoft.Maui.Controls; 3 | 4 | namespace SDKBrowserMaui.Examples.DataFormControl.GroupingCategory.GroupingExample; 5 | 6 | public partial class Grouping : ContentView 7 | { 8 | public Grouping() 9 | { 10 | InitializeComponent(); 11 | } 12 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/DataGridControl/ColumnsCategory/HeaderFooterContentTemplateExample/Data.cs: -------------------------------------------------------------------------------- 1 | namespace SDKBrowserMaui.Examples.DataGridControl.ColumnsCategory.HeaderFooterContentTemplateExample; 2 | 3 | public class Data 4 | { 5 | public string Country { get; set; } 6 | public string Capital { get; set; } 7 | } 8 | -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/DataGridControl/Gender.cs: -------------------------------------------------------------------------------- 1 | namespace SDKBrowser.Examples.DataGridControl; 2 | 3 | public enum Gender 4 | { 5 | Male, 6 | Female, 7 | Other 8 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/DataGridControl/GettingStartedCategory/GettingStartedExample/Data.cs: -------------------------------------------------------------------------------- 1 | namespace SDKBrowserMaui.Examples.DataGridControl.GettingStartedCategory.GettingStartedExample; 2 | 3 | public class Data 4 | { 5 | public string Country { get; set; } 6 | public string Capital { get; set; } 7 | } 8 | -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/DataGridControl/Person.cs: -------------------------------------------------------------------------------- 1 | namespace SDKBrowser.Examples.DataGridControl; 2 | 3 | // >> person-datamodel 4 | public class Person 5 | { 6 | public string Name { get; set; } 7 | public int Age { get; set; } 8 | public Gender Gender { get; set; } 9 | } 10 | // << person-datamodel -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/DataGridControl/RenderModeCategory/SkiaRenderingExample/SkiaRendering.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.DataGridControl.RenderModeCategory.SkiaRenderingExample; 4 | 5 | public partial class SkiaRendering : ContentView 6 | { 7 | public SkiaRendering() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/DataGridControl/SearchCategory/Person.cs: -------------------------------------------------------------------------------- 1 | namespace SDKBrowserMaui.Examples.DataGridControl.SearchCategory; 2 | 3 | // >> datagrid-search-object 4 | public class Person 5 | { 6 | public string Name { get; set; } 7 | public int Age { get; set; } 8 | public string Department { get; set; } 9 | } 10 | // << datagrid-search-object -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/DataGridControl/SelectionCategory/Person.cs: -------------------------------------------------------------------------------- 1 | namespace SDKBrowserMaui.Examples.DataGridControl.SelectionCategory; 2 | 3 | // >> datagrid-selection-object 4 | public class Person 5 | { 6 | public string Name { get; set; } 7 | public int Age { get; set; } 8 | public string Department { get; set; } 9 | } 10 | // << datagrid-selection-object -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/DataGridControl/StylingCategory/DataGridStylingExample/Data.cs: -------------------------------------------------------------------------------- 1 | namespace SDKBrowserMaui.Examples.DataGridControl.StylingCategory.DataGridStylingExample; 2 | 3 | public class Data 4 | { 5 | public string Country { get; set; } 6 | public string Capital { get; set; } 7 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/DataPagerControl/IntegrationCategory/Data.cs: -------------------------------------------------------------------------------- 1 | namespace SDKBrowserMaui.Examples.DataPagerControl.IntegrationCategory; 2 | 3 | // >> datapager-data 4 | public class Data 5 | { 6 | public int Id { get; set; } 7 | public int Number { get; set; } 8 | public string Information { get; set; } 9 | } 10 | // << datapager-data -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/DataPagerControl/StylingCategory/ButtonsExample/Buttons.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.DataPagerControl.StylingCategory.ButtonsExample; 4 | 5 | public partial class Buttons : ContentView 6 | { 7 | public Buttons() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/EntryControl/StylingCategory/StylingExample/Styling.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.EntryControl.StylingCategory.StylingExample; 4 | 5 | public partial class Styling : ContentView 6 | { 7 | public Styling() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/ImageEditorControl/FeaturesCategory/BusyTemplateExample/BusyTemplate.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.ImageEditorControl.FeaturesCategory.BusyTemplateExample; 4 | 5 | public partial class BusyTemplate : ContentView 6 | { 7 | public BusyTemplate() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/ImageEditorControl/FeaturesCategory/CommandsExample/Commands.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.ImageEditorControl.FeaturesCategory.CommandsExample; 4 | 5 | public partial class Commands : ContentView 6 | { 7 | public Commands() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/ImageEditorControl/FeaturesCategory/ZoomLevelExample/ZoomLevel.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.ImageEditorControl.FeaturesCategory.ZoomLevelExample; 4 | 5 | public partial class ZoomLevel : ContentView 6 | { 7 | public ZoomLevel() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/ImageEditorControl/imageavatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/SdkBrowser/Examples/ImageEditorControl/imageavatar.png -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/ListPickerControl/City.cs: -------------------------------------------------------------------------------- 1 | namespace SDKBrowserMaui.Examples.ListPickerControl 2 | { 3 | // >> listpicker-features-businessmodel 4 | public class City 5 | { 6 | public string Name { get; set; } 7 | public int Population { get; set; } 8 | } 9 | // << listpicker-features-businessmodel 10 | } 11 | -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/ListViewControl/LayoutsCategory/Item.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Graphics; 2 | 3 | namespace SDKBrowserMaui.Examples.ListViewControl.LayoutsCategory 4 | { 5 | public class Item 6 | { 7 | public string Name { get; set; } 8 | public Color Color { get; set; } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/MapControl/world.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/SdkBrowser/Examples/MapControl/world.dbf -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/MapControl/world.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/SdkBrowser/Examples/MapControl/world.shp -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/NavigationViewControl/CommandsCategory/CommandsExample/Commands.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.NavigationViewControl.CommandsCategory.CommandsExample; 4 | 5 | public partial class Commands : ContentView 6 | { 7 | public Commands() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/NavigationViewControl/DataBindingCategory/ItemStyleExample/ItemStyle.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.NavigationViewControl.DataBindingCategory.ItemStyleExample; 4 | 5 | public partial class ItemStyle : ContentView 6 | { 7 | public ItemStyle() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/NavigationViewControl/FeaturesCategory/SelectionExample/Selection.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.NavigationViewControl.FeaturesCategory.SelectionExample; 4 | 5 | public partial class Selection : ContentView 6 | { 7 | public Selection() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/NavigationViewControl/StylingCategory/ItemStylingExample/ItemStyling.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.NavigationViewControl.StylingCategory.ItemStylingExample; 4 | 5 | public partial class ItemStyling : ContentView 6 | { 7 | public ItemStyling() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/NavigationViewControl/StylingCategory/PaneStylingExample/PaneStyling.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.NavigationViewControl.StylingCategory.PaneStylingExample; 4 | 5 | public partial class PaneStyling : ContentView 6 | { 7 | public PaneStyling() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/NumericInputControl/StylingCategory/StylingExample/Styling.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.NumericInputControl.StylingCategory.StylingExample; 4 | 5 | public partial class Styling : ContentView 6 | { 7 | public Styling() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/PdfViewerControl/pdf-overview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/SdkBrowser/Examples/PdfViewerControl/pdf-overview.pdf -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/PdfViewerControl/pdf-processing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/SdkBrowser/Examples/PdfViewerControl/pdf-processing.pdf -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/ProgressBarControl/StylingCategory/StylingExample/Styling.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.ProgressBarControl.StylingCategory.StylingExample; 4 | 5 | public partial class Styling : ContentView 6 | { 7 | public Styling() 8 | { 9 | InitializeComponent(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/RangeSliderControl/FeaturesCategory/DragModeExample/DragMode.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.RangeSliderControl.FeaturesCategory.DragModeExample; 4 | 5 | public partial class DragMode : ContentView 6 | { 7 | public DragMode() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/RangeSliderControl/LabelsCategory/LabelTemplateExample/LabelTemplate.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.RangeSliderControl.LabelsCategory.LabelTemplateExample; 4 | 5 | public partial class LabelTemplate : ContentView 6 | { 7 | public LabelTemplate() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/RangeSliderControl/StylingCategory/TrackStylingExample/TrackStyling.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.RangeSliderControl.StylingCategory.TrackStylingExample; 4 | 5 | public partial class TrackStyling : ContentView 6 | { 7 | public TrackStyling() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/RangeSliderControl/TicksCategory/TickTemplateExample/TickTemplate.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.RangeSliderControl.TicksCategory.TickTemplateExample; 4 | 5 | public partial class TickTemplate : ContentView 6 | { 7 | public TickTemplate() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/RangeSliderControl/TicksCategory/TicksSettingsExample/TicksSettings.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.RangeSliderControl.TicksCategory.TicksSettingsExample; 4 | 5 | public partial class TicksSettings : ContentView 6 | { 7 | public TicksSettings() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/SignaturePadControl/CommandsCategory/CommandsExample/Commands.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.SignaturePadControl.CommandsCategory.CommandsExample; 4 | 5 | public partial class Commands : ContentView 6 | { 7 | public Commands() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/SlideViewControl/MyItem.cs: -------------------------------------------------------------------------------- 1 | namespace SDKBrowserMaui.Examples.SlideViewControl 2 | { 3 | // >> slideview-datamodel 4 | public class MyItem 5 | { 6 | public string Content { get; set; } 7 | } 8 | // << slideview-datamodel 9 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/SliderControl/FeaturesCategory/DragModeExample/DragMode.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.SliderControl.FeaturesCategory.DragModeExample; 4 | 5 | public partial class DragMode : ContentView 6 | { 7 | public DragMode() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/SliderControl/FeaturesCategory/RangeTrackExample/RangeTrack.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.SliderControl.FeaturesCategory.RangeTrackExample; 4 | 5 | public partial class RangeTrack : ContentView 6 | { 7 | public RangeTrack() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/SliderControl/LabelsCategory/LabelTemplateExample/LabelTemplate.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.SliderControl.LabelsCategory.LabelTemplateExample; 4 | 5 | public partial class LabelTemplate : ContentView 6 | { 7 | public LabelTemplate() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/SliderControl/LabelsCategory/LabelsSettingsExample/LabelsSettings.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.SliderControl.LabelsCategory.LabelsSettingsExample; 4 | 5 | public partial class LabelsSettings : ContentView 6 | { 7 | public LabelsSettings() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/SliderControl/StylingCategory/TicksStylingExample/TicksStyling.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.SliderControl.StylingCategory.TicksStylingExample; 4 | 5 | public partial class TicksStyling : ContentView 6 | { 7 | public TicksStyling() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/SliderControl/StylingCategory/TrackStylingExample/TrackStyling.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.SliderControl.StylingCategory.TrackStylingExample; 4 | 5 | public partial class TrackStyling : ContentView 6 | { 7 | public TrackStyling() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/SliderControl/TicksCategory/TickTemplateExample/TickTemplate.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.SliderControl.TicksCategory.TickTemplateExample; 4 | 5 | public partial class TickTemplate : ContentView 6 | { 7 | public TickTemplate() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/SliderControl/TicksCategory/TicksSettingsExample/TicksSettings.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.SliderControl.TicksCategory.TicksSettingsExample; 4 | 5 | public partial class TicksSettings : ContentView 6 | { 7 | public TicksSettings() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/TabViewControl/FeaturesCategory/ContentSwipingExample/ContentSwiping.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.TabViewControl.FeaturesCategory.ContentSwipingExample; 4 | 5 | public partial class ContentSwiping : ContentView 6 | { 7 | public ContentSwiping() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/TabViewControl/FeaturesCategory/DataBindingExample/DataBinding.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.TabViewControl.FeaturesCategory.DataBindingExample; 4 | 5 | public partial class DataBinding : ContentView 6 | { 7 | public DataBinding() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/TemplatedButtonControl/FeaturesCategory/CommandExample/Command.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.TemplatedButtonControl.FeaturesCategory.CommandExample; 4 | 5 | public partial class Command : ContentView 6 | { 7 | public Command() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/TemplatedButtonControl/StylingCategory/StylingExample/Styling.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.TemplatedButtonControl.StylingCategory.StylingExample; 4 | 5 | public partial class Styling : ContentView 6 | { 7 | public Styling() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/ToggleButtonControl/FeaturesCategory/CommandExample/Command.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.ToggleButtonControl.FeaturesCategory.CommandExample; 4 | 5 | public partial class Command : ContentView 6 | { 7 | public Command() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/ToggleButtonControl/FeaturesCategory/ThreeStateExample/ThreeState.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.ToggleButtonControl.FeaturesCategory.ThreeStateExample; 4 | 5 | public partial class ThreeState : ContentView 6 | { 7 | public ThreeState() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/ToggleButtonControl/FeaturesCategory/VisualStatesExample/VisualStates.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.ToggleButtonControl.FeaturesCategory.VisualStatesExample; 4 | 5 | public partial class VisualStates : ContentView 6 | { 7 | public VisualStates() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/ToggleButtonControl/StylingCategory/StylingExample/Styling.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.ToggleButtonControl.StylingCategory.StylingExample; 4 | 5 | public partial class Styling : ContentView 6 | { 7 | public Styling() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/TreeViewControl/CommandsCategory/CheckUncheckExample/CheckUncheck.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.TreeViewControl.CommandsCategory.CheckUncheckExample; 4 | 5 | public partial class CheckUncheck : ContentView 6 | { 7 | public CheckUncheck() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/TreeViewControl/CommandsCategory/ExpandCollapseExample/ExpandCollapse.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.TreeViewControl.CommandsCategory.ExpandCollapseExample; 4 | 5 | public partial class ExpandCollapse : ContentView 6 | { 7 | public ExpandCollapse() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/TreeViewControl/ScrollingCategory/City.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | using System.Collections.ObjectModel; 3 | 4 | namespace SDKBrowserMaui.Examples.TreeViewControl.ScrollingCategory 5 | { 6 | // >> treeview-city-model 7 | public class City : Location 8 | { 9 | } 10 | // << treeview-city-model 11 | } 12 | -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/TreeViewControl/ScrollingCategory/ScrollbarsExample/Scrollbars.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.TreeViewControl.ScrollingCategory.ScrollbarsExample; 4 | 5 | public partial class Scrollbars : ContentView 6 | { 7 | public Scrollbars() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/TreeViewControl/SelectionCategory/SelectedItemExample/SelectedItem.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.TreeViewControl.SelectionCategory.SelectedItemExample; 4 | 5 | public partial class SelectedItem : ContentView 6 | { 7 | public SelectedItem() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Examples/TreeViewControl/StylingCategory/ItemStylingExample/ItemStyling.xaml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Maui.Controls; 2 | 3 | namespace SDKBrowserMaui.Examples.TreeViewControl.StylingCategory.ItemStylingExample; 4 | 5 | public partial class ItemStyling : ContentView 6 | { 7 | public ItemStyling() 8 | { 9 | InitializeComponent(); 10 | } 11 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Platforms/Android/AndroidEnvironment.txt: -------------------------------------------------------------------------------- 1 | DOTNET_MODIFIABLE_ASSEMBLIES=Debug -------------------------------------------------------------------------------- /Samples/SdkBrowser/Platforms/Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #512BD4 4 | #2B0B98 5 | #2B0B98 6 | -------------------------------------------------------------------------------- /Samples/SdkBrowser/Platforms/MacCatalyst/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using Foundation; 2 | using Microsoft.Maui; 3 | using Microsoft.Maui.Hosting; 4 | 5 | namespace SDKBrowserMaui 6 | { 7 | [Register("AppDelegate")] 8 | public class AppDelegate : MauiUIApplicationDelegate 9 | { 10 | protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); 11 | } 12 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Platforms/MacCatalyst/Entitlements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Samples/SdkBrowser/Platforms/Windows/RadImageButton.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.UI.Xaml.Controls; 2 | 3 | namespace SDKBrowserMaui.WinUI 4 | { 5 | internal class RadImageButton : Button 6 | { 7 | } 8 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Platforms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using Foundation; 2 | using Microsoft.Maui; 3 | using Microsoft.Maui.Hosting; 4 | 5 | namespace SDKBrowserMaui 6 | { 7 | [Register("AppDelegate")] 8 | public class AppDelegate : MauiUIApplicationDelegate 9 | { 10 | protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); 11 | } 12 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Platforms/iOS/Entitlements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Samples/SdkBrowser/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "Windows Machine": { 4 | "commandName": "MsixPackage", 5 | "nativeDebugging": false 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/SdkBrowser/Resources/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Fonts/telerikfontexamples.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/SdkBrowser/Resources/Fonts/telerikfontexamples.ttf -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/Emojis/emoji_amazed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/SdkBrowser/Resources/Images/Emojis/emoji_amazed.png -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/Emojis/emoji_confused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/SdkBrowser/Resources/Images/Emojis/emoji_confused.png -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/Emojis/emoji_cool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/SdkBrowser/Resources/Images/Emojis/emoji_cool.png -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/Emojis/emoji_dissapointment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/SdkBrowser/Resources/Images/Emojis/emoji_dissapointment.png -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/Emojis/emoji_loughing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/SdkBrowser/Resources/Images/Emojis/emoji_loughing.png -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/Emojis/emoji_love.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/SdkBrowser/Resources/Images/Emojis/emoji_love.png -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/Emojis/emoji_neutral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/SdkBrowser/Resources/Images/Emojis/emoji_neutral.png -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/Emojis/emoji_sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/SdkBrowser/Resources/Images/Emojis/emoji_sad.png -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/Emojis/emoji_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/SdkBrowser/Resources/Images/Emojis/emoji_smile.png -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/Emojis/emoji_smile2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/SdkBrowser/Resources/Images/Emojis/emoji_smile2.png -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/Emojis/emoji_tongue_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/SdkBrowser/Resources/Images/Emojis/emoji_tongue_out.png -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/Emojis/emoji_wink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/SdkBrowser/Resources/Images/Emojis/emoji_wink.png -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/accordion.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/aiprompt.svg: -------------------------------------------------------------------------------- 1 | 3 | 4 | -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/arrowdown.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/arrowleft.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/arrowright.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/available.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/SdkBrowser/Resources/Images/available.png -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/SdkBrowser/Resources/Images/avatar.png -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/away.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/SdkBrowser/Resources/Images/away.png -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/badge.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/balloon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/SdkBrowser/Resources/Images/balloon.jpg -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/border.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/SdkBrowser/Resources/Images/bullet.png -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/busy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/SdkBrowser/Resources/Images/busy.png -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/chart.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/chat.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/chatbackground.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/SdkBrowser/Resources/Images/chatbackground.jpg -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/checkbox.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/close.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/collectionview.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/combobox.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/dataform.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/datagrid.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/SdkBrowser/Resources/Images/delete.png -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/docklayout.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/expander.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/favourite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/SdkBrowser/Resources/Images/favourite.png -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/itemscontrol.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/listpicker.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/listview.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/navigationview.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/numeric.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/person_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/SdkBrowser/Resources/Images/person_01.png -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/progressbar.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/sampleavatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/SdkBrowser/Resources/Images/sampleavatar.png -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/samplebot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/SdkBrowser/Resources/Images/samplebot.png -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/sidedrawer.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/slideview.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/SdkBrowser/Resources/Images/success.png -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/tabview.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/templatedpicker.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/treeview.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/Images/unread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/maui-samples/bedbd7b931de0795c5e715970d6755c27efa068b/Samples/SdkBrowser/Resources/Images/unread.png -------------------------------------------------------------------------------- /Samples/SdkBrowser/Resources/appicon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Samples/SdkBrowser/ViewModels/UITestsHomeViewModel.cs: -------------------------------------------------------------------------------- 1 | namespace SDKBrowserMaui.ViewModels 2 | { 3 | public class UITestsHomeViewModel : SearchViewModel 4 | { 5 | } 6 | } 7 | --------------------------------------------------------------------------------