頂部簡而言之,這是我的Xamarin HomePage.xaml如何添加搜索欄頁面
<ContentPage>
<StackLayout>
<SearchBar
x:Name="mySearchBar"
SearchButtonPressed="mySearchBar_ButtonPressed">
</SearchBar>
</StackLayout>
<ScrollView>
<StackLayout>
<!-- Label and entries here -->
<StackLayout>
<!-- Label and entries here -->
</StackLayout>
<!-- Buttons and a listview here -->
</StackLayout>
</ScrollView>
</ContentPage>
的代碼,但我想添加頁面的搜索欄上方,藍條。我怎樣才能做到這一點?
簡答:這是不可能的。你必須自己創建它。 – Farid