This is a set of demos for custom use and edge-case scenarios.
This demo uses the PdfDocumentProcessing libraries to locate a SignatureWidget in the RadFixedDocument and replaces it with the written signature in a RadSignaturePad.
This demo shows you how to insert a hand-drawn signature into a RichTextEditor document. From there, you can export the rich document to DOCX Word document format.
A demo that showcases the use of SignalR with the UI for Xamarin RadChat
control. The source code also includes the SignalR Hub project (ASP.NET Core 2.2 application).
This demo project shows you how to implement your own data virtualization feature by dynamically fetching the previous or next set of data items as the user is scrolling. This effectively gives you both normal and reverse LoadOnDemand.
This project shows how to asynchronously load additional data when a ListView cell loads, without blocking the UI thread.
A helper app that lets you quickly generate different icon sizes from a single source image. It is very extensible because you only need to add any custom icon sizes by adding an IconDefinition
to the IconDefinitions collection.
// For example, if you needed a 30x30 pixel icon for the taskbar
IconDefinitions.Add(new IconDefinition
{
PlatformName = "Desktop",
Category = "Taskbar",
Height = 30,
Width = 30
});
Here's the results when a list of iPhone and iPad assets are loaded as IconDefinitions.
A demo that shows how to use a RadEntry
and a RadListView
to perform real-time filtering using DelegateFilterDescriptor
.
A demo that shows how to connect multiple AutoCompleteView controls so that one selection sets the items of the next AutoCompleteView and automatically set the focus on the next one.
The example uses Country > State > City:
A demo that shows you how to access and customize the series labels via a native series reference in a Xamarin Platform Effect.
UWP and iOS use the same white text on red background custom style.
This solution contains a Dependency Service that allows you to cature any part of the UI and render it as a PNG image. See the specialized README for more info.
This example shows how to build a custom control that dynamically generates RadButtons to create a SegmentedControl. It combines the features of the UI for Xamarin RadButton
and RadBorder
into a single control.
An application that lets you set colors of Telerik brushes and create custom theme resources
An application with RadDataGrid and AutoCompleteView that filters the DataGrid in real time.
A Xamarin.Forms Android application that uses Android P (SDK 28) telephony features via Platform Effect and DependencyService to detect incoming phone calls.
This project shows how to use a Xamarin Platform Effect to disable the RadSideDrawer's ability to dismiss the drawer when tapping outside of the drawer area.
This demo solution shows how to use a Xamarin.Forms WebView to load the Telerik Reporting HTML5 ReportViewer using a WebView and local HTML.
Demonstrates how to insert an image into the Rich Text Editor from one of 3 sources:
- Online image, using a URL.
- Local file source, using a file stream
- Hard-coded Base64 string