Matt Lacey更新:: C#代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using Microsoft.Phone.Controls;
using System.Collections.ObjectModel;
namespace WindowsPhoneApplication1
{
public partial class MainPage : PhoneApplicationPage
{
public MainPage()
{
InitializeComponent();
}
private void PhoneApplicationPage_Loaded(object sender, System.Windows.RoutedEventArgs e)
{
var comments = new Comments();
var threeComments = new List<Comment>
{
new Comment("t1", "d1", "n1", "i1"),
new Comment("t2", "d2", "n2", "i3"),
new Comment("t3", "d3", "n3", "i3")
};
comments.comments = threeComments.ToArray();
commentsLooper.ItemsSource = new CommentsDataItems(comments);
}
}
public class Comments
{
public Comment[] comments { get; set; }
}
public class CommentsDataItems : ObservableCollection<CommentDataItem>
{
public CommentsDataItems(Comments comments)
{
foreach (var com in comments.comments)
{
Add(new CommentDataItem(com.text, com.device, com.name, com.id));
}
}
}
public class CommentDataItem
{
public String text { get; set; }
public String device { get; set; }
public String name { get; set; }
public String id { get; set; }
public CommentDataItem(String text, String device, String name, String id)
{
this.text = text;
this.device = device;
this.name = name;
this.id = id;
}
}
public class Comment
{
public String text { get; set; }
public String device { get; set; }
public String name { get; set; }
public String id { get; set; }
public Comment(String text, String device, String name, String id)
{
this.text = text;
this.device = device;
this.name = name;
this.id = id;
}
}
}
XAML代码:
<phone:PhoneApplicationPage
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d" d:DesignWidth="480" d:DesignHeight="800"
x:Class="WindowsPhoneApplication1.MainPage"
FontFamily="{StaticResource PhoneFontFamilyNormal}"
FontSize="{StaticResource PhoneFontSizeNormal}"
Foreground="{StaticResource PhoneForegroundBrush}"
SupportedOrientations="Portrait" Orientation="Portrait"
shell:SystemTray.IsVisible="True" Loaded="PhoneApplicationPage_Loaded">
<!--LayoutRoot is the root grid where all page content is placed-->
<Grid x:Name="LayoutRoot" Background="Transparent">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<!--TitlePanel contains the name of the application and page title-->
<StackPanel x:Name="TitlePanel" Grid.Row="0" Margin="12,17,0,28">
<TextBlock x:Name="ApplicationTitle" Text="MY APPLICATION" Style="{StaticResource PhoneTextNormalStyle}" Foreground="White"/>
<TextBlock x:Name="PageTitle" Text="Test Page" Margin="9,-7,0,0" Style="{StaticResource PhoneTextTitle1Style}" Foreground="White"/>
</StackPanel>
<!--ContentPanel - place additional content here-->
<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
<ItemsControl x:Name="commentsLooper" Grid.Row="1">
<ItemsControl.ItemTemplate>
<DataTemplate>
<TextBlock Height="100" Margin="0" TextWrapping="Wrap" Text="{Binding Text}"/>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
</Grid>
</Grid>
</phone:PhoneApplicationPage>
答案 0 :(得分:0)
我不得不猜测你的某些类型,但以下内容对我有用:
请注意,我已稍微重命名并将所有内容放在同一名称空间中
var comments = new Comments();
var threeComments = new List<Comment>
{
new Comment("t1", "d1", "n1", "i1"),
new Comment("t2", "d2", "n2", "i3"),
new Comment("t3", "d3", "n3", "i3")
};
comments.comments = threeComments.ToArray();
commentsLooper.ItemsSource = new CommentsDataItems(comments);
public class Comments
{
public Comment[] comments { get; set; }
}
public class CommentsDataItems : ObservableCollection<CommentDataItem>
{
public CommentsDataItems(Comments comments)
{
foreach (var com in comments.comments)
{
Add(new CommentDataItem(com.text, com.device, com.name, com.id));
}
}
}
public class CommentDataItem
{
public String text { get; set; }
public String device { get; set; }
public String name { get; set; }
public String id { get; set; }
public CommentDataItem(String text, String device, String name, String id)
{
this.text = text;
this.device = device;
this.name = name;
this.id = id;
}
}
public class Comment
{
public String text { get; set; }
public String device { get; set; }
public String name { get; set; }
public String id { get; set; }
public Comment(String text, String device, String name, String id)
{
this.text = text;
this.device = device;
this.name = name;
this.id = id;
}
}
在XAML中我做了一些小改动。其中最大的是删除明确的高度和宽度。值得注意的是,因为你在网格上设置了一个小的相关高度,所以只有一个空间可以看到一个项目。
<Grid x:Name="commentsCotainer" VerticalAlignment="Top">
<ItemsControl x:Name="commentsLooper" Grid.Row="1">
<ItemsControl.ItemTemplate>
<DataTemplate>
<Grid x:Name="comentHolder" HorizontalAlignment="Center" VerticalAlignment="Top">
<TextBlock HorizontalAlignment="Stretch" VerticalAlignment="Top" TextWrapping="Wrap" Text="{Binding text}" Foreground="White" />
</Grid>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
</Grid>