我正在開發Windows Phome應用程序。我有一個頁面上的以下列表框:ListBox ItemsSource綁定不起作用
<ListBox Margin="10,10,8,8" x:Name="WallList">
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel />
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
<ListBox.ItemTemplate>
<DataTemplate>
<Grid x:Name="ListBoxItemLayout" Background="Transparent" Margin="10">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="0.33*"/>
<ColumnDefinition Width="0.77*"/>
</Grid.ColumnDefinitions>
<Image HorizontalAlignment="Left" Margin="0" Source="{Binding ImagePath}" Height="200"/>
<StackPanel Margin="5,0,0,0" Grid.Column="1">
<TextBlock x:Name="Name" TextWrapping="Wrap" Text="{Binding Name}" Style="{StaticResource PhoneTextTitle2Style}"/>
<TextBlock x:Name="Comment" Margin="0,5,0,0" TextWrapping="Wrap" Text="{Binding Comment}" Style="{StaticResource PhoneTextNormalStyle}" Height="130"/>
<TextBlock x:Name="When" TextWrapping="Wrap" Text="{Binding When}" Style="{StaticResource PhoneTextTitle3Style}" VerticalAlignment="Bottom"/>
</StackPanel>
</Grid>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
我用這個來填補Loaded事件列表框:
this.WallList.ItemsSource = StartingWall.GetWallPosts();
,現在我想以編程方式添加更多的項目,當用戶寫下來TextBox上的一些文本並單擊按鈕。我想把這個文本放在評論欄裏。
我打算用默認數據填充其餘字段。
我的問題是:
如何添加更多項目到WallList ListBox?
有人建議做到以下幾點:
public ObservableCollection<WallPostEntry> MyWallPosts {get;set;}
// Initialize MyWallPosts to whatever
MyWallPosts.Add(new WallPostEntry("new entry"));
<ListBox Margin="10,10,8,8" x:Name="WallList" ItemsSource="{Binding MyWallPosts}">
但是綁定列表框的ItemsSource不會爲我工作。我在構造函數初始化MyWallPosts
,只是InitializeComponent();
之前,像這樣:
public Wall()
{
MyWallPosts = StartingWall.GetWallPosts();
InitializeComponent();
}
有什麼建議?
謝謝。