首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Windows Mobile >

WP7中的ListBox数据绑定有关问题

2012-01-22 
WP7中的ListBox数据绑定问题C# codeSystem.Collections.ObjectModel.ObservableCollectionGameBoxClass.G

WP7中的ListBox数据绑定问题

C# code
System.Collections.ObjectModel.ObservableCollection<GameBoxClass.GameNum> query = new System.Collections.ObjectModel.ObservableCollection<GameBoxClass.GameNum>();            for (int i = 0; i < 5; i++)            {                query.Add(new GameBoxClass.GameNum                {                    Account =  i + "号",                    Password = "111",                    PasswordCard = new System.Windows.Media.Imaging.BitmapImage(new Uri("/Images/wow.jpg", UriKind.RelativeOrAbsolute))                });            }            AccountList.ItemsSource = query;


XAML
XML code
<ListBox  x:Name="AccountList" Grid.Row="1" >                <ListBox.ItemTemplate>                    <DataTemplate>                        <TextBlock Text="{Binding Path=Account, Mode=TwoWay}" FontFamily="微软雅黑" Foreground="Black"></TextBlock>                    </DataTemplate>                </ListBox.ItemTemplate>            </ListBox>



怎么没有反应啊。。。显示不了数据··求解···--

[解决办法]
没有实现INotifyPropertyChanged接口。

热点排行