WCF サービスから取得したイベント項目を表示するために Gridview を使用しています。私が使用するコード
コード ビハインド:
List<GroupInfoList<object>> groups = new List<GroupInfoList<object>>();
ServiceReference1.Service1Client c = new ServiceReference1.Service1Client();
List<Tag> tags=(await c.GetUserTagsAsync(u.id)).ToList();
var q = from t in tags
orderby ((Tag)t ).tag1
group t by ((Tag)t).tag1 into g
select new { GroupName = g.Key, Items = g };
foreach (var g in q)
{
GroupInfoList<object> info = new GroupInfoList<object>();
info.Key = g.GroupName;
foreach (var item in g.Items)
{
info.Add(item);
}
groups.Add(info);
}
cvs1.Source = groups;
public class GroupInfoList<T> : List<object>
{
public object Key { get; set; }
public new IEnumerator<object> GetEnumerator()
{
return (System.Collections.Generic.IEnumerator<object>)base.GetEnumerator();
}
}
WCF 署名:
List<Event> GetEventsByTag(string tag);
List<Tag> GetUserTags(Guid uid);
XAML
<GridView x:Name="ItemsByCategory" VerticalAlignment="Bottom"
ItemsSource="{Binding Source={StaticResource cvs1}}"
BorderBrush="Gray" BorderThickness="1">
<GridView.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Horizontal"/>
</ItemsPanelTemplate>
</GridView.ItemsPanel>
<GridView.ItemTemplate>
<DataTemplate>
<Grid HorizontalAlignment="Left" Background="White">
<StackPanel Orientation="Horizontal" Margin="10,10,0,0">
<Image Source="{Binding Image}" Height="60" Width="60" VerticalAlignment="Center" Margin="0,0,10,0"/>
<StackPanel Margin="0,0,0,0" Orientation="Vertical">
<TextBlock TextWrapping="Wrap" Style="{StaticResource ItemTitleStyle}" Width="200" VerticalAlignment="Center" Text="{Binding XXXXXXXX}"
HorizontalAlignment="Left" FontFamily="Segoe UI" />
</StackPanel>
</StackPanel>
</Grid>
</DataTemplate>
</GridView.ItemTemplate>
<GridView.GroupStyle>
<GroupStyle>
<GroupStyle.HeaderTemplate>
<DataTemplate>
<Grid Background="White" Margin="0">
<TextBlock Text='{Binding Key}' Foreground="Gray" FontSize="25" Margin="5" />
</Grid>
</DataTemplate>
</GroupStyle.HeaderTemplate>
<GroupStyle.Panel>
<ItemsPanelTemplate>
<VariableSizedWrapGrid Orientation="Vertical"/>
</ItemsPanelTemplate>
</GroupStyle.Panel>
</GroupStyle>
</GridView.GroupStyle>
</GridView>
問題は、TextBlock (XXX でマークされている) のデータ バインディングに何を入れればよいかわからないため、ソースから各イベントのタイトル プロパティにバインドできますか?