1,344 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
1
answer
73
views
MAUI C# Listview blank cells
Can anyone tell me why this doesn't work.
I am targetting Windows at the moment..
when I run it the cells appear on the page but there is no text in them.
I get the same problem with CollectionView.
I ...
0
votes
1
answer
80
views
.NET Maui CollectionView loads in duplicate objects when scrolling
When I scroll on my CollectionView in my .NET Maui app, the items that are loaded are duplicates of the ones that are already showing.
This is the start of the CollectionView:
Once we scroll, we can ...
1
vote
1
answer
93
views
CollectionView inside CarouselView doesn't scroll in Android (MAUI)
I'm trying to implement similar functionality to how Gmail and Outlook apps works, e.g. user can swipe left/right to navigate between emails and inside email you can also horizontally scroll ...
0
votes
3
answers
97
views
Collection view single preselection doesn't work
I'm working on .net maui and I'm facing a strange issue; I have a CollectionView with bounded ItemsSource and SelectedItem.
I'm trying to do a simple preselection to set CollectionView's SelectedItem ...
0
votes
1
answer
174
views
.NET MAUI Buttons inside ContentView
Goodmorning,
i have a button inside a content view which is reused many times in many different content page.
Almost all the times i have a collectionview to displays elemenst of this contentview type,...
0
votes
1
answer
151
views
.NET MAUI SwipeGestureRecognizer never trigger in Android but trigger in iOS
Recently I published App in PlayStore & AppStore. I using DOTNET MAUI 8.0.403 in Mac VS Code. Now I'm experiencing an issue where the swipe gesture doesn't triger in Android Emulator. But it ...
1
vote
3
answers
361
views
Maui CollectionView scrolls to top when replacing an item - But only on Windows
I have a cart system on a catalog of items with 2 DataTemplates.
one is for item with a count of 0.
a second for items with a count greater than 0.
We use an Add button within each item
For the ...
0
votes
0
answers
150
views
CollectionView control in a MAUI .net 9 app only fires load more items command once when supporting increment load
I am using a CollectionView component in a page and loading data incrementally to support large list of items.
Here is the view XAML:
<?xml version="1.0" encoding="utf-8" ?>
&...
0
votes
0
answers
14
views
How to clear selection in a CollectionView by clicking OK in a DisplayAlert?
**Hello everybody. I ́m trying to clear selection in a CollectionView after clicking "OK" in a DisplayAlert but I haven ́t be able to achieve it. Here ́s my original code (regci is my database):...
1
vote
1
answer
119
views
XAML Binding warnings when using commands and AncestorType
I have a small MAUI program using CollectionView - and per item, there are buttons attached with a command (like changeitem)
The app is working. But I am getting warnings at compile and runtime about ...
2
votes
1
answer
552
views
How to fix MAUI application crash with "Layout cycle detected. Layout could not complete." exception when data is loaded into views beyond a limit
We are using MAUI platform in .NET8 to build an application that shows tabular data of tasks assigned to folks for a duration of days. The page loads fine and shows the data in the grid for a smaller ...
1
vote
3
answers
851
views
ObservableCollection Not Updating UI After Refresh in .NET MAUI
I'm developing a .NET MAUI application where I have a ClientReviewsViewModel that uses an ObservableCollection to display a list of reviews. The reviews are displayed in a CollectionView, and I'm ...
0
votes
0
answers
102
views
Maui CollectionView<T> problems with SelectionMode=Single and rows display
I have a CollectionView<T> with 2 columns.
The SelectionMode=Single.
Problem :
The second column displays only a few colors names,
not all and after a selection no more color names !...
1
vote
1
answer
559
views
.Net Maui CollectionView selected Item not highlighting
I created a Collection View to resemble a data table and everything is working except for the selected item highlighting. I tried changing the color using visual state managers but still nothing. I ...
1
vote
1
answer
322
views
.NET MAUI Conflict between Long press selection and CollectionView default selection and other gestures
I have a collectionview and I want to enable selection only on longpress and once the long press is enabled I don't want any gestures to be invoked on that image or item in collectionview.
If tapped ...