gpt4 book ai didi

c# - 无法在 TabControl 内的 TextBox 上设置 WordWrap 选项

转载 作者:太空宇宙 更新时间:2023-11-03 21:46:39 24 4
gpt4 key购买 nike

我有一个 TextBox,它被添加到每个在运行时创建的新选项卡控件选项卡页面。所有属性都已正确设置(例如,多行等),但是当我尝试从 coedbehind 访问文本框时,没有它的选项。当自动换行位于 tabcontol 的标签页中时,如何打开或关闭自动换行?

enter image description here

最佳答案

Controls 集合类型化为Control 对象的集合。您需要先将返回的控件转换为 TextBox:

TextBox textBox = tabControl1.SelectedTab.Controls[0] as TextBox;
if (textBox != null)
{
textBox.WordWrap = true;
}

关于c# - 无法在 TabControl 内的 TextBox 上设置 WordWrap 选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16646200/

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