Unplanned
Last Updated: 09 Jun 2025 08:44 by ADMIN
Hanoch
Created on: 09 Jun 2025 08:06
Category: UI for .NET MAUI
Type: Feature Request
1
Add Copyright label control
Provide a copyright label control for .NET MAUI. 

For example Telerik UI for WinForms introduced such control for the RadMap. For MAUI it could be nice to have such control in general
1 comment
ADMIN
Didi
Posted on: 09 Jun 2025 08:44

Solution: Using Label with Span:

<Label>
	<Label.FormattedText>
		<FormattedString>
			<Span Text="&#169;" />
			<Span Text="Copyright 2025"
            TextColor="Blue"
            TextDecorations="Underline">
				<Span.GestureRecognizers>
					<TapGestureRecognizer Command="{Binding TapCommand}" />
				</Span.GestureRecognizers>
			</Span>
		</FormattedString>
	</Label.FormattedText>
</Label>

Regards,
Didi
Progress Telerik