0

我正在为 windows phone 开发一个应用程序,我最近遇到了列表框的问题。这在我的模拟器上运行良好,但是当我在我的设备上部署时,它只显示空白。列表项是按要求创建的,但不会执行绑定,因为单击时每个项目都没有携带信息。与之相关的代码如下

XAML

<ListBox Name="NotesListBox" Grid.Row="0" Margin="15,0" >
            <ListBox.ItemsPanel>
                <ItemsPanelTemplate>
                    <toolkit:WrapPanel Orientation="Horizontal" />
                </ItemsPanelTemplate>
            </ListBox.ItemsPanel>                
            <ListBox.ItemTemplate>
                <DataTemplate>
                    <StackPanel Orientation="Vertical">
                        <local:NotesTile Name="TileNotes" Tap="NotesTile_Tap_1" Margin="10,10"/>
                        <TextBlock Text="{Binding FileName}" />
                    </StackPanel>
                </DataTemplate>
            </ListBox.ItemTemplate>
        </ListBox>

后面的 C# 代码

 List<Notes> source = new List<Notes>()
            {
                new Notes(){ Content="This is some text", FileName="one.txt", IsPasswordProtected=true},
                new Notes(){ Content="Another text file", FileName="two.txt", IsPasswordProtected=false}
            };


            //this.DataContext = this;
            this.NotesListBox.ItemsSource = source;

在同一个命名空间中,我得到的类为:

class Notes
{
    public string Content { get; set; }
    public string DateEdited { get; set; }
    public string TimeEdited { get; set; }
    public string FileName { get; set; }
    public bool IsPasswordProtected { get; set; }
}

我在模拟器上运行良好,甚至在为 windows phone 8 制造的设备上运行良好。出于同样的原因,我的应用程序在市场上被拒绝了。

编辑

Binding 类应该始终是公共的。将课堂笔记设为公开将解决此问题。

4

1 回答 1

0

try with setting this.DataContext = this; in the constructor of the xaml.cs before InitilizeComponent() and let us know if its work.

于 2013-03-22T06:44:18.180 回答