如何在Xamarin Forms中更改SearchBar键盘中的“搜索”按钮文本?

时间:2018-08-29 06:01:01

标签: xamarin xamarin.forms xamarin.ios searchbar

我将以下代码用于SearchBar控件。当用户单击SearchBar时,它会显示带有“搜索”按钮的键盘以在键盘中进行搜索。我想更改它的名称。

这是我当前的代码:Xaml

<SearchBar Text="{Binding SearchText}" Placeholder="Search" />

SS enter image description here

1 个答案:

答案 0 :(得分:1)

有一个名为EntryCustomReturnPlugin的NuGet程序包。它允许您更改Entry的完成按钮上的文本。

但是,我认为它与SearchBar不兼容。您需要将SearchBar更改为Entry或编写custom renderer(您可以使用EntryCustomReturnPlugin的源代码,该代码与之非常相似)。