2017-03-08 60 views

回答

2

如果添加了工具欄項目,你可以做這樣的:

ToolbarItems.Add(new ToolbarItem("Action Name", "Icon.png", async() => 
{ 
    //Your code on clicked 
})); 

要做到這一點在XAML中,你需要添加命令屬性:在你的代碼

<ContentPage.ToolbarItems> 
    <ToolbarItem Name="Invite" Command="{Binding ToolbarItemCommand}"></ToolbarItem> 
</ContentPage.ToolbarItems> 

那麼後面定義一個名爲ToolbarItemCommand的ICommand,當點擊該圖標時將觸發它

+0

我在xaml中添加了工具欄圖標,如。那麼有沒有什麼辦法可以點擊xaml並在代碼背後編寫實現(.cs) – sid

+0

我更新了我的答案。我認爲這應該可行,但我不在電腦上,我可以在電腦上測試它,所以你必須讓我知道。希望能幫助到你! – cvanbeek

+0

我像這樣解決了這個問題。 sid