2017-03-24 111 views
0

頂部簡而言之,這是我的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> 

的代碼,但我想添加頁面的搜索欄上方,藍條。我怎樣才能做到這一點?

enter image description here

+0

簡答:這是不可能的。你必須自己創建它。 – Farid

回答

2

請參閱此以下link爲MaterialSearchView。

此外,對於使用不同的搜索功能,請參閱this link

希望它能幫助。

+0

@eaege如果您發現此答案有幫助,請接受答案,以便其他人獲益,謝謝。 –

2

所以基本上你想要在導航欄頂部的搜索欄。爲此,您必須執行自定義渲染。找到這個blog link來實現這一目標:

Github source link

希望這有助於!