Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@
HorizontalOptions="Center"
AutomationId="SelectionPageButton"
WidthRequest="400"/>
<Button Text="ItemsSource Feature"
Clicked="OnItemsSourceButtonClicked"
HorizontalOptions="Center"
AutomationId="ItemsSourceButton"
WidthRequest="400"/>
<Button Text="CollectionViewDynamicChangesPage"
Clicked="OnDynamicChangesButtonClicked"
HorizontalOptions="Center"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
using Microsoft.Maui.Controls;

namespace Maui.Controls.Sample;

public class CollectionViewFeaturePage : NavigationPage
{
public CollectionViewFeaturePage()
Expand Down Expand Up @@ -46,4 +47,9 @@ private async void OnSelectionButtonClicked(object sender, EventArgs e)
await Navigation.PushAsync(new CollectionViewSelectionPage());
}


private async void OnItemsSourceButtonClicked(object sender, EventArgs e)
{
await Navigation.PushAsync(new CollectionViewItemsSourcePage());
}
}
Loading
Loading