繁体   English   中英

C#ListBox更新绑定文本

[英]C# ListBox Update Binding Text

我在WP8.1上有一个ListBox ,想在其中绑定一些项目。 一切正常,但是更改ItemSource的值不会更改ListBox任何内容

<ListBox x:Name="myListBox" Width="Auto" HorizontalAlignment="Stretch" Background="{x:Null}" Foreground="{x:Null}">
    <ListBox.ItemTemplate>
        <DataTemplate>
            <StackPanel x:Name="PanelTap" Tapped="PanelTap_Tapped">
                <Border x:Name="BorderCollapsed">
                    <StackPanel Margin="105,0,0,0">
                        <TextBlock Text="{Binding myItem.location, Mode=TwoWay}" />
                    </StackPanel>
                </Border>
    </ListBox.ItemTemplate>
</ListBox>

我通过以下方式绑定项目

ObservableCollection<LBItemStruct> AllMyItems = new ObservableCollection<LBItemStruct>();

public sealed class LBItemStruct
{
    public bool ext { get; set; }
    public Container myItem { get; set; }
}
public sealed class Container
{
    public string location{ get; set; }
    ...
}

当我现在想更改TextBlock Text时,什么也没发生

private void PanelTap_Tapped(object sender, TappedRoutedEventArgs e)
{
    int sel = myListBox.SelectedIndex;
    if (sel >= 0)
    {
        myListBox[sel].myItem.location = "sonst wo";
    }
}

当我点击面板(通过Debug选中)时, PanelTap_Tapped被触发,但是TextBlock文本不会改变

如果要在属性更改时更新视图,则需要使源对象实现INotifyPropertyChaned并引发PropertyChanged事件:

public sealed class Container : INotifyPropertyChanged
{
    public string location
    { 
        get { return _location; }
        set { _location = value; RaisePropertyChanged("location"); }
    }
    private string _location;
    ... 

    public event PropertyChangedEventHandler PropertyChanged;

    private void RaisePropertyChanged(string propName)
    {
        var handler = PropertyChanged;
        if (handler != null)
            handler(new PropertyChangedEventArgs(this, propName));
    }
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM