gpt4 book ai didi

wpf - 在 WPF 文本框中隐藏插入符号

转载 作者:行者123 更新时间:2023-12-03 22:14:11 24 4
gpt4 key购买 nike

有没有办法在 WPF 文本框中隐藏光标?我知道有 Cursor="None"但这只会影响鼠标光标。我想隐藏“文本光标”。

最佳答案

插入符号是文本编辑器中的当前插入位置。光标是鼠标光标的形状。

无法在读写 TextBox 中禁用插入符号。相反,将 CaretBrush 更改为透明。

TextBox txt = ...;
// Hide the caret.
txt.CaretBrush = new SolidColorBrush(Color.FromArgb(0, 0, 0, 0));
// Show the caret.
txt.CaretBrush = null; // use default Brush

关于wpf - 在 WPF 文本框中隐藏插入符号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3909804/

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