Xamarin Forms:如何将项目列表设置为扩展器子项?

2023-12-02

我正在使用一个Expander用于显示一本书的单元和章节。我能够将单位显示为Expander.Header,但单元下的章节又是一个列表。我尝试如下,但章节无法在用户界面上查看。

XAML

<StackLayout BindableLayout.ItemsSource="{Binding  AllItems,Mode=TwoWay}">
    <BindableLayout.ItemTemplate>
        <DataTemplate>
            <Expander
                ExpandAnimationEasing="{x:Static Easing.CubicIn}"
                ExpandAnimationLength="500"
                CollapseAnimationEasing="{x:Static Easing.CubicOut}"
                CollapseAnimationLength="500">
                <Expander.Header>
                    <StackLayout
                        Orientation="Horizontal">
                        
                        <Label 
                            Text="{Binding unit.title}"
                            TextColor="Black"
                            HorizontalOptions="Start" 
                            HorizontalTextAlignment="Start"
                            FontSize="18"
                            VerticalTextAlignment="Center"
                            VerticalOptions="CenterAndExpand">
                        </Label>
                    </StackLayout>
                </Expander.Header>
                <Expander.ContentTemplate>
                    <DataTemplate>
                        <StackLayout 
                            Orientation="Horizontal">
                                
                            <Label
                                HorizontalOptions="Start"
                                Text="{Binding contentList.title}"
                                VerticalOptions="CenterAndExpand"
                                FontSize="16"
                                TextColor="Black">
                            </Label>
                        </StackLayout>
                    </DataTemplate>
                </Expander.ContentTemplate>
            </Expander>
        </DataTemplate>
    </BindableLayout.ItemTemplate>
</StackLayout>

我的 JSON 数据格式:

"bookContentList": [
        {
            "unit": {
                "title": "Unit 1: Revelation"
            },
            "contentList": [
                {
                    "title": "Unit 1: Preview",
                    "embedCode": "c1"
                },
                {
                    "title": "Chapter 1: God&#39;s Plan for all creation",
                    "embedCode": "c2"
                },
                {
                    "title": "Chapter 2: Made to be with god",
                    "embedCode": "c3"
                },
                {
                    "title": "Chapter 3: Signs of gods presence",
                    "embedCode": "c4"
                }
            ]
        },
        {
            "unit": {
                "title": "Unit 2: Trinity"
            },
            "contentList": [
                {
                    "title": "Unit 2: Preview",
                    "embedCode": "c5"
                },
                {
                    "title": "Chapter 4: The mystery of the trinity",
                    "embedCode": "c6"
                },
                {
                    "title": "Chapter 5: Prayer and Worship",
                    "embedCode": "c7"
                },
                {
                    "title": "Chapter 6: Life of Virtue",
                    "embedCode": "c8"
                }
            ]
        }
    ]

视图模型

private List<BookContentList> _allItems;
public List<BookContentList> AllItems
{
    get
    { return _allItems; }
    set
    {
        _allItems = value;
        OnPropertyChanged("AllItems");
    }
}
//setting data
AllItems = bookDetails.bookContentList;

我的问题是每个单元下的章节没有显示在用户界面上。我已经上传了一个示例项目here以便于参考。

我还需要知道如何获取所选章节的完整详细信息?


您的代码中有两个错误。

  1. 绑定路径不正确。

  2. Miss BindableLayout.ItemTemplate在内部 stackLayout 内。

将您的 xaml 替换为

<StackLayout Orientation="Vertical">

    <Button
        Text="click Me"
        IsVisible="False"
        BackgroundColor="Red"
        x:Name="button"
        Clicked="ButtonClick"/>

    <StackLayout x:Name="expanderLayout" IsVisible="False" BindableLayout.ItemsSource="{Binding  AllItems,Mode=TwoWay}">
        <BindableLayout.ItemTemplate>
            <DataTemplate>
                <Expander
                        ExpandAnimationEasing="{x:Static Easing.CubicIn}"
                        ExpandAnimationLength="500"
                        CollapseAnimationEasing="{x:Static Easing.CubicOut}"
                        CollapseAnimationLength="500">
                    <Expander.Header>
                        <Frame 
                                Padding="2"
                                Margin="5"
                                HasShadow="False"
                                BorderColor="#fdeec7"
                                CornerRadius="0">

                            <StackLayout
                                    HorizontalOptions="FillAndExpand"
                                    VerticalOptions="FillAndExpand"
                                    Orientation="Horizontal">

                                <Label 
                                        Text="{Binding unit.title}"
                                        TextColor="Black"
                                        HorizontalOptions="Start" 
                                        HorizontalTextAlignment="Start"
                                        VerticalTextAlignment="Center"
                                        VerticalOptions="CenterAndExpand">
                                    <Label.FontSize>
                                        <OnIdiom x:TypeArguments="x:Double">
                                            <OnIdiom.Phone>18</OnIdiom.Phone>
                                            <OnIdiom.Tablet>36</OnIdiom.Tablet>
                                            <OnIdiom.Desktop>18</OnIdiom.Desktop>
                                        </OnIdiom>
                                    </Label.FontSize>
                                </Label>

                                <StackLayout.Margin>
                                    <OnIdiom x:TypeArguments="Thickness">
                                        <OnIdiom.Phone>5</OnIdiom.Phone>
                                        <OnIdiom.Tablet>8</OnIdiom.Tablet>
                                        <OnIdiom.Desktop>5</OnIdiom.Desktop>
                                    </OnIdiom>
                                </StackLayout.Margin>
                                <StackLayout.Padding>
                                    <OnIdiom x:TypeArguments="Thickness">
                                        <OnIdiom.Phone>5</OnIdiom.Phone>
                                        <OnIdiom.Tablet>8</OnIdiom.Tablet>
                                        <OnIdiom.Desktop>5</OnIdiom.Desktop>
                                    </OnIdiom>
                                </StackLayout.Padding>
                            </StackLayout>
                        </Frame>
                    </Expander.Header>
                    <Expander.ContentTemplate>
                        <DataTemplate>
                            <StackLayout BindableLayout.ItemsSource="{Binding contentList,Mode=TwoWay}">
                                <BindableLayout.ItemTemplate>
                                    <DataTemplate>
                                    <StackLayout 
                                Orientation="Horizontal">

                                        <Label
                                        HorizontalOptions="Start"
                                        Text="{Binding title}"
                                        VerticalOptions="CenterAndExpand"
                                        TextColor="Black">
                                            <Label.FontSize>
                                                <OnIdiom x:TypeArguments="x:Double">
                                                    <OnIdiom.Phone>16</OnIdiom.Phone>
                                                    <OnIdiom.Tablet>32</OnIdiom.Tablet>
                                                    <OnIdiom.Desktop>16</OnIdiom.Desktop>
                                                </OnIdiom>
                                            </Label.FontSize>
                                            <Label.GestureRecognizers>
                                                            <TapGestureRecognizer
                                                                Tapped="LoadChapter"
                                                                CommandParameter="{Binding .}"
                                                                NumberOfTapsRequired="1">
                                                            </TapGestureRecognizer>
                                                        </Label.GestureRecognizers>
                                        </Label>
                                    </StackLayout>
                                </DataTemplate>
                                </BindableLayout.ItemTemplate>
                               
                            </StackLayout>
                        </DataTemplate>
                    </Expander.ContentTemplate>
                </Expander>
            </DataTemplate>
        </BindableLayout.ItemTemplate>
    </StackLayout>
</StackLayout>

xaml.cs

//expander child tapping gesture
public void LoadChapter(object sender, EventArgs args)
{
    var view = (View)sender;
    var model = view.BindingContext as ContentList;

    Debug.WriteLine("title:>>" + model.title);
}

enter image description here

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

Xamarin Forms:如何将项目列表设置为扩展器子项? 的相关文章

随机推荐