如何在MAUI的弹出菜单栏中添加搜索栏?我已经添加了一个弹出菜单:
<?xml version="1.0" encoding="UTF-8" ?>
<Shell
x:Class="AGROWORKS.MOBILE.AppShell"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:AGROWORKS.MOBILE"
Shell.FlyoutBehavior="Flyout">
<ShellContent
Title="Parsel ya da Kişi Arayın"
ContentTemplate="{DataTemplate local:MainPage}"
Route="MainPage" />
</Shell>
现在我正试图弄清楚如何实现一个搜索栏。
1条答案
按热度按时间ttygqcqt1#
创建一个搜索栏,创建一个SearchBar对象,并将其Placeholder属性设置为指示用户输入搜索词的文本。
https://github.com/dotnet/maui-samples/blob/main/6.0/UserInterface/ControlGallery/ControlGallery/Views/XAML/SearchBarDemoPage.xaml