简体   繁体   English

WPF C#从ListBoxItem内的Textblock获取文本

[英]WPF C# Get text from a Textblock inside a ListBoxItem

How can i access a Textblock inside a Stackpanel that is inside a ListBoxItem? 如何访问ListBoxItem内Stackpanel内的Textblock?

For example: 例如:

ListBoxItem MyItem = new ListBoxItem();
StackPanel StackPnl = new StackPanel();
TextBlock Title = new TextBlock();

Title.Text = "Item 1";

StackPnl.Children.Add(Title);
MyItem.Content = StackPnl;

How can i later access the Text property of that Textblock with Listbox.SelectedItem? 以后如何使用Listbox.SelectedItem访问该Textblock的Text属性?

Try this: 尝试这个:

//listBox1 is your ListBox
ListBoxItem MyItem = listBox1.SelectedItem as ListBoxItem;
if(MyItem != null)
{
    StackPanel sp = MyItem.Content as StackPanel;
    if(sp != null && sp.Children.Count > 0)
    {
        TextBlock textBlock = sp.Children[0] as TextBlock;
        if(textBlock != null)
        {
            string text = textBlock.Text;
        }
    }
}

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

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