使用F#在Xamarin.Forms中添加ToolbarItem

时间:2016-06-30 14:50:43

标签: f# xamarin.forms toolbar

我的Xamarin.Forms项目包含F#中的PCL。我想在导航到其他页面的页面上添加ToolbarItem。应该怎么做?

使用我的代码,错误出现“值'或构造函数'此'未定义”。

这是我的代码:

type SomePage() = 
    inherit ContentPage()

    let _ = base.LoadFromXaml(typeof<SomePage>)

    let toolbarItem = new ToolbarItem("O", "icon", (fun() -> this.Navigation.PushAsync(OtherPage())), ToolbarItemOrder.Default, 0)
    do base.ToolbarItems.Add(toolbarItem)

0 个答案:

没有答案