Xamarin没有找到'ToolbarItems'

时间:2017-03-03 09:54:29

标签: c# xaml xamarin xamarin.forms

我想要做的是将工具栏添加到内容页面。

StackLayout

下添加此代码后

<ContentPage.ToolbarItems>
   <ToolbarItem Icon="plus.png"/>
</ContentPage.ToolbarItems>

了解更多信息。如果我将上面的代码放在与顶部StackLayout相同的位置,则工具栏就不会出现。

我遇到了一个错误,无法在其他任何地方找到相同的错误。

这是我的xaml文件内容。

    <?xml version="1.0" encoding="UTF-8"?>
<ContentPage 
    xmlns:ic="clr-namespace:ImageCircle.Forms.Plugin.Abstractions;assembly=ImageCircle.Forms.Plugin.Abstractions"
    xmlns="http://xamarin.com/schemas/2014/forms" 
    xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" 
    x:Class="EodiRoad.SocialPage">



    <StackLayout>

        <ContentPage.ToolbarItems>
            <ToolbarItem Icon="plus.png"/>
        </ContentPage.ToolbarItems>

        <ListView x:Name="socialPostsListView" HasUnevenRows="true" IsPullToRefreshEnabled="true">

            <ListView.ItemTemplate>
                <DataTemplate>
                    <ViewCell>
                        <StackLayout Orientation="Vertical" Padding="5">
                            <StackLayout Orientation="Horizontal" Padding="5">
                                <ic:CircleImage 
                                    x:Name="userProfileImage"
                                    HeightRequest="50"
                                    WidthRequest="50"
                                    Aspect="AspectFill"
                                    Source="{Binding post.uploader.userProfile.userThumbnail}"
                                />
                                <Label Text="{Binding post.uploader.username}"/>
                            </StackLayout>

                            <Image
                                x:Name="postImage"
                                Source="{Binding post.image}"
                                Aspect="AspectFill"
                            />

                            <StackLayout Orientation="Horizontal">
                                <Button Text="like"/>
                                <Button Text="share"/>
                            </StackLayout>

                            <StackLayout Orientation="Vertical" HorizontalOptions="StartAndExpand">
                                <Label Text="{Binding post.content}"/>
                                <Label Text="{Binding post.uploadedTime}" TextColor="Gray"/>
                            </StackLayout>
                        </StackLayout>
                    </ViewCell>
                </DataTemplate>
            </ListView.ItemTemplate>
        </ListView>

    </StackLayout>


</ContentPage>

这是错误。

No property, bindable property, or event found for 'ToolbarItems'

和完整的错误。

/Users/UZU/Google Drive/Apps/EodiRoad/EodiRoadXamarin/EodiRoad/EodiRoad/EodiRoad.Views.SocialPage.xaml(5,5): Error: Position 13:5. No property, bindable property, or event found for 'ToolbarItems' (EodiRoad)

我在这里做错了什么?什么错误,以及如何修复它?! 我相信你们。

2 个答案:

答案 0 :(得分:4)

此代码段

<ContentPage.ToolbarItems>
  <ToolbarItem Icon="plus.png"/>
</ContentPage.ToolbarItems>

可能意味着两件事,具体取决于具体情况:

  1. 设置此ContentPage的ToolbarItems属性(或ToolbarItemsProperty BindableProperty)(如果父节点是ContentPage,或
  2. 让我们将Attached BindableProperty ContentPage.ToolbarItemsProperty设置为当前的BindableObject。
  3. 当你在StackLayout中使用它时,这被解释为第二个,但这样的属性并不存在!所以它失败了。

    直接放在ContentPage中,它就像魅力

    一样
    <ContentPage ...>
      <ContentPage.ToolbarItems>
        <ToolbarItem Icon="plus.png"/>
      </ContentPage.ToolbarItems>
      <StackLayout .../>
    </ContentPage>
    

    关于ToolbarItems没有出现,取决于您运行的平台,可能需要将ContentPage打包在NavigationPage中。

答案 1 :(得分:0)

您需要在promise之外添加ToolbarItems试试这个:

StackLayout