Declined
Last Updated: 20 Jun 2025 08:18 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
2 comments
ADMIN
Didi
Posted on: 20 Jun 2025 08:15

Hi Dani,

The item was discussed with the team and we decided to set the status as Declined. Use the suggested approach for implementing such label.

Regards,
Didi
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.

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