An example with CollectionView:
<CollectionView ItemsSource="{Binding EmptyMonkeys}"
EmptyView="No items to display" />
Please provide a support for a placeholder text in RichTextEditor (an optional text displayed when edited content is empty).
Best if color of this text could be configurable.
I'm looking to replace the Xamarin RadRichTextEditor control in my Maui app. The Maui native Editor control is good but doesn't scroll.
And to be honest, the RadRichTextEditor gave me more trouble than it was worth (I loved the functionality, but it wasn't a good fit for my implementation).
So, adding the appropriate support to RadEntry to make it more of a 'multiline text editor' or even a 'mini word processor' would be awesome.
When Flow Direction is changed to right to left, on Android the control does not behave as expected.
Provide support for right to left.
On Android there is an issue with the navigation items.
On WinUI it works
Hello,
Id would be great having basic editing functionalities in MAUI PDFViewer as you offer in WPF version.
Especially we're interested in having ability to add text and basic shape annotations.
Best Regards,
Raymond
Now the appointment is not displayed in the time-ruler when the appointment start and end value are the same.
Implement/Introduce min appointment height for Day and MultiDayView.
For example I wanted to use the StartThickness property as Bindable property but I received the following error: No property, BindableProperty, or event found for "StartThickness", or mismatching type between value and property.
Hi Team,
Please consider adding a way to cancel a group's expand/collapse action when the user taps on the group header.
For example, through a GroupTapping event handler that fires just before GroupTapped, and we can execute logic that prevents the operation:
private void RadCollectionView_OnGroupTapping(object sender, RadTappingEventArgs<GroupContext> e)
{
if (e.Data.Key.ToString() == "GroupToStayPermanentlyExpanded")
{
e.Cancel();
}
}
// which uses this imaginary event args with Cancel method
public class RadTappingEventArgs<T>(T data) : RadTappedEventArgs<T>(data)
{
public void Cancel()
{
// prevents GroupTapped event
}
}
Thank you,
Rodrigo