gpt4 book ai didi

wpf - 如何在WPF中获取ComboBox.SelectedText

转载 作者:行者123 更新时间:2023-12-04 13:35:20 25 4
gpt4 key购买 nike

在WPF中,ComboBox没有SelectedText属性。

有没有一种方法可以实现与WPF中的TextBox SelectedText相同的功能

最佳答案

您可以使用以下方法访问ComboBox的TextBox:

var edit = (TextBox)myCombo.Template.FindName("PART_EditableTextBox", myCombo);

然后,您可以访问该TextBox的SelectedText属性:
var selectedText = edit.SelectedText;

关于wpf - 如何在WPF中获取ComboBox.SelectedText,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3169328/

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