-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathSearchingSamples.xaml
More file actions
20 lines (18 loc) · 1.17 KB
/
SearchingSamples.xaml
File metadata and controls
20 lines (18 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<dui:ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:dui="http://dips.com/mobile.ui"
xmlns:searching="clr-namespace:Components.ComponentsSamples.Searching"
xmlns:helpers="clr-namespace:Components.Helpers"
x:Class="Components.ComponentsSamples.Searching.SearchingSamples">
<dui:VerticalStackLayout Spacing="0">
<dui:NavigationListItem Title="Search bar"
Command="{helpers:NavigationCommand {x:Type searching:SearchBarSamples}}"
HasTopDivider="True"
HasBottomDivider="True"/>
<dui:NavigationListItem Title="Search page"
Command="{helpers:NavigationCommand {x:Type searching:SearchPageSamples}}"
HasBottomDivider="True" />
<dui:NavigationListItem Title="Native search (SearchBehavior)"
Command="{helpers:NavigationCommand {x:Type searching:NativeSearchPageSamples}}" />
</dui:VerticalStackLayout>
</dui:ContentPage>