New to Telerik UI for .NET MAUI? Start a free 30-day trial
.NET MAUI SignaturePad Commands
Updated on Aug 29, 2025
SignaturePad exposes a ClearCommand(ICommand) for clearing the signature.
xaml
<Grid RowDefinitions="Auto,*" RowSpacing="10">
<Button Text="Clear the signature"
Command="{Binding ClearCommand, Source={x:Reference signaturePad}}"/>
<telerik:RadSignaturePad x:Name="signaturePad"
Grid.Row="1"
BorderThickness="1"
BorderColor="LightGray" />
</Grid>
Add the telerik namespace:
XAML
xmlns:telerik="http://schemas.telerik.com/2022/xaml/maui"