gpt4 book ai didi

c# - LIstbox 所选项目内容到文本 block

转载 作者:行者123 更新时间:2023-11-30 21:11:43 26 4
gpt4 key购买 nike

我确信对此有一个简单的解决方案,但我目前似乎找不到。

我正在尝试使用以下代码将文本 block 中选择列表框的内容显示为文本。

private void SelectionToText(object sender, EventArgs e)
{
ListBoxItem selection = (ListBoxItem)TextListBox.SelectedItem;

selectionText.Text = "This is the " + selection;

}

出于某种原因,文本 block 只显示

"This is the System.Windows.Controls.ListBoxItem "

我最初以为是因为我没有转换成字符串,但那也不起作用。

有什么建议吗?

最佳答案

可以引用ListBoxItem的Content属性

selectionText.Text= "This is the " + selection.Content.ToString();

关于c# - LIstbox 所选项目内容到文本 block ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7887829/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com