0

いくつかのアイテムをグリッドビューにバインドしようとしていますが、それらをグループにまとめたいと思っています。まず、私の xaml は次のようになります。

<Page.Resources>

        <!-- TODO: Delete this line if the key AppName is declared in App.xaml -->
        <x:String x:Key="AppName">Header</x:String>
        <CollectionViewSource x:Name="itemsViewSource" IsSourceGrouped="True" Source="{Binding Items}"/>
        <DataTemplate x:Key="DataTemplate1">
            <Grid HorizontalAlignment="Left" Width="168" Height="157">
                <Border Background="{StaticResource ListViewItemPlaceholderBackgroundThemeBrush}">
                    <Image Source="{Binding Image}" Stretch="UniformToFill" AutomationProperties.Name="{Binding Title}"/>
                </Border>
                <StackPanel VerticalAlignment="Bottom" Background="{StaticResource ListViewItemOverlayBackgroundThemeBrush}" Height="48">
                    <TextBlock Text="{Binding Title}" Foreground="{StaticResource ListViewItemOverlayForegroundThemeBrush}" Style="{StaticResource TitleTextStyle}" Height="59" Margin="16,0,7,0" FontSize="16" FontFamily="Andy"/>
                </StackPanel>
            </Grid>
        </DataTemplate>
    </Page.Resources>

    <!--
        This grid acts as a root panel for the page that defines two rows:
        * Row 0 contains the back button and page title
        * Row 1 contains the rest of the page layout
    -->
    <Grid x:Name="grd" Style="{StaticResource LayoutRootStyle}">
        <Grid.RowDefinitions>
            <RowDefinition Height="140"/>
            <RowDefinition Height="*"/>
        </Grid.RowDefinitions>

        <GridView
        x:Name="itemGridView"
        AutomationProperties.AutomationId="ItemsGridView"
        AutomationProperties.Name="Items"
        TabIndex="1"
        Grid.RowSpan="2"
        Padding="116,136,116,46"
        ItemsSource="{Binding Source={StaticResource itemsViewSource}}"
        ItemTemplate="{StaticResource DataTemplate1}"
        SelectionMode="None"
        IsSwipeEnabled="false"
        IsItemClickEnabled="True"
        ItemClick="ItemView_ItemClick">

            <GridView.Background>
                <ImageBrush ImageSource="Assets/bg4.jpg"/>
            </GridView.Background>

            <GridView.GroupStyle>
                <GroupStyle>
                    <GroupStyle.HeaderTemplate>
                        <DataTemplate>
                            <Grid Margin="1,0,0,6">
                                 <Button
                                    AutomationProperties.Name="Group Title"
                                    Style="{StaticResource TextPrimaryButtonStyle}" Content="" />
                            </Grid>
                        </DataTemplate>
                    </GroupStyle.HeaderTemplate>
                    <GroupStyle.Panel>
                        <ItemsPanelTemplate>
                            <VariableSizedWrapGrid Orientation="Vertical" Margin="0,0,80,0"/>
                        </ItemsPanelTemplate>
                    </GroupStyle.Panel>
                </GroupStyle>
            </GridView.GroupStyle>
        </GridView>
        <!-- Back button and page title -->
        <Grid>
            <Grid.ColumnDefinitions>
                <ColumnDefinition Width="Auto"/>
                <ColumnDefinition Width="*"/>
            </Grid.ColumnDefinitions>
            <Button x:Name="backButton" Click="GoBack" IsEnabled="{Binding Frame.CanGoBack, ElementName=pageRoot}" Style="{StaticResource BackButtonStyle}"/>
            <TextBlock x:Name="pageTitle" Grid.Column="1" Style="{StaticResource PageHeaderTextStyle}" FontFamily="Buxton Sketch" FontSize="60" Foreground="#DEFFFFFF" Margin="0,0,30,44">
                <Run Foreground="#DE316191" Text="Merak"/>
                <Run FontSize="48" Text=" "/>
                <Run Foreground="#DEFDFDFD" Text="Edilen"/>
                <Run FontSize="48" Text=" "/>
                <Run Foreground="#DE3F6B97" Text="Şeyler"/>
            </TextBlock>
        </Grid>

        <VisualStateManager.VisualStateGroups>

            <!-- Visual states reflect the application's view state -->
            <VisualStateGroup x:Name="ApplicationViewStates">
                <VisualState x:Name="FullScreenLandscape"/>
                <VisualState x:Name="Filled"/>

                <!-- The entire page respects the narrower 100-pixel margin convention for portrait -->
                <VisualState x:Name="FullScreenPortrait">
                    <Storyboard>
                        <ObjectAnimationUsingKeyFrames Storyboard.TargetName="backButton" Storyboard.TargetProperty="Style">
                            <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource PortraitBackButtonStyle}"/>
                        </ObjectAnimationUsingKeyFrames>
                    </Storyboard>
                </VisualState>

                <!-- The back button and title have different styles when snapped -->
                <VisualState x:Name="Snapped">
                    <Storyboard>
                        <ObjectAnimationUsingKeyFrames Storyboard.TargetName="backButton" Storyboard.TargetProperty="Style">
                            <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource SnappedBackButtonStyle}"/>
                        </ObjectAnimationUsingKeyFrames>
                        <ObjectAnimationUsingKeyFrames Storyboard.TargetName="pageTitle" Storyboard.TargetProperty="Style">
                            <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource SnappedPageHeaderTextStyle}"/>
                        </ObjectAnimationUsingKeyFrames>
                    </Storyboard>
                </VisualState>
            </VisualStateGroup>
        </VisualStateManager.VisualStateGroups>
    </Grid>

これで、このコードでグループを作成できます。

public class Item
        {
            public string Title { get; set; }
            public string Description{ get; set; }
            public string Image { get; set; }
        }

        List<List<Item>> total = new List<List<Item>>();
        List<Item> lst = new List<Item>();

        public void AddGroups()
        {

            Item first= new Item();
            first.Title = "asdf";
            first.Description = "asdaf";
            first.Image = "aswdfa";

            lst.Add(first);
            total.Add(lst);
        }

このコードを使用すると、ヘッダー テキストなしでグループを追加できますが、ヘッダー テキストが必要です。それなしでは何もできません。そこで、別のカスタム クラスを作成して、この新しいリストをグリッドビューにバインドしようとしました。このようなクラスを作成してから、このクラスのリストをバインドしようとしましたが、機能しません。アイテムが含まれていない空白の画面が表示されます。

public class grp
    {
        private List<Item> bilg;

        public grp(List<Item> bilg)
        {
            this.bilg = bilg;
        }

    }

2番目のクラスは、私にはわかりませんが、完全に間違っている可能性があります。これは Windows ストア アプリで、xaml と c# を使用しています。助けてくれてありがとう。

tl;dr グループ名が上にあるグループでグリッドビューを作成しようとしています。

4

2 に答える 2

0

しばらく前に同様のコントロールを作成する必要がありました。HeaderTemplates を使用して、ヘッダー値をグリッドに表示しました。それがあなたに役立つかどうかはわかりません。

コード例

このようなものがうまくいくかもしれません。

<HeaderTemplate>
       <asp:Label ID="label" runat="server" Text='<%= Eval("text") %>' />
</HeaderTemplate>

コードビハインド

グリッドビューでラベルを見つけるには、これを試してください。

Label lbl = (Label)gridview.FindControl('LabelId');
lbl.text = "your text";
于 2013-06-23T23:18:40.203 に答える
0

このサンプルを見てください: http://code.msdn.microsoft.com/windowsapps/Items-Grouping-Demo-2853657f

それが役立つことを願っています!

于 2013-06-24T07:04:58.103 に答える