需要根据Listview Xamarin Forms中的行数绘制一个框视图

时间:2019-04-12 10:04:46

标签: xaml xamarin xamarin.forms

我正在尝试创建一个分组列表视图,该列表视图将按年份分组,并且在每个组内将显示数月,但与此同时,我还需要绘制一个框视图,如下图所示,这就是我被卡住的地方请任何人告诉我应该使用哪种方法来实现这种布局

这就是我要实现的目标

this is what i am trying to achieve

直到现在我都能得到

enter image description here

现在丢失的部分是左侧的线从listview的标题开始

我的Xaml:

   <ContentPage.Content>
    <ListView x:Name ="lstView" IsGroupingEnabled="true" GroupDisplayBinding="{Binding LongName}" GroupShortNameBinding="{Binding ShortName}">
        <ListView.ItemTemplate>
            <DataTemplate>
                <ViewCell>
                    <ViewCell.View>
                        <StackLayout>
                            <Label Text="{Binding Name}"></Label>
                        </StackLayout>
                    </ViewCell.View>
                </ViewCell>
            </DataTemplate>
        </ListView.ItemTemplate>
    </ListView>
</ContentPage.Content>

0 个答案:

没有答案