博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
WPF TextBox/TextBlock 文本超出显示时,文本靠右显示
阅读量:6274 次
发布时间:2019-06-22

本文共 2236 字,大约阅读时间需要 7 分钟。

文本框显示

文本框正常显示:

文本框超出区域显示:

 

 实现方案

判断文本框是否超出区域

请见《》

设置文本布局显示

1. FlowDirection

当文本超出显示区域时,设置FlowDirection靠右显示

下面是封装的附加属性ScrollEndWhenTextTrimmed

1         ///  2         /// 当文本超出显示时,文本是否靠右侧显示 3         ///  4         public static readonly DependencyProperty ScrollEndWhenTextTrimmedProperty = DependencyProperty.RegisterAttached( 5         "ScrollEndWhenTextTrimmed", typeof(bool), typeof(TextBoxHelper), 6         new PropertyMetadata(default(bool), OnScrollEndWhenTextTrimmedChanged)); 7  8         private static void OnScrollEndWhenTextTrimmedChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) 9         {10             var textBox = (TextBox)d;11             textBox.TextChanged -= TextBoxOnTextChanged;12             if ((bool)e.NewValue)13             {14                 textBox.FlowDirection = IsTextTrimmed(textBox) ? FlowDirection.RightToLeft : FlowDirection.LeftToRight;15                 textBox.TextChanged += TextBoxOnTextChanged;16             }17             void TextBoxOnTextChanged(object sender, TextChangedEventArgs args)18             {19                 textBox.FlowDirection = IsTextTrimmed(textBox) ? FlowDirection.RightToLeft : FlowDirection.LeftToRight;20             }21         }22 23         public static void SetScrollEndWhenTextTrimmed(DependencyObject element, bool value)24         {25             element.SetValue(ScrollEndWhenTextTrimmedProperty, value);26         }27 28         public static bool GetScrollEndWhenTextTrimmed(DependencyObject element)29         {30             return (bool)element.GetValue(ScrollEndWhenTextTrimmedProperty);31         }

 

在需要设置文本超出时居右显示的TextBox控件中,添加附加属性ScrollEndWhenTextTrimmed即可。

2.ScrollToEnd

类似方案FlowDirection,文本超出时,通过滚动到文本末尾后,文本靠右显示。

如方案FlowDirection,可以在添加附加属性更改事件中,订阅TextBox的TextChanged。

1     textBox.SelectionStart = textBox.Text.Length;2     textBox.ScrollToEnd();

But,此方案有缺陷。当TextBox设置IsEnabled=false时,就无法滚动到了。即使如下设置依然无效:

1     textBox.IsEnabled = true;2     textBox.SelectionStart = textBox.Text.Length;3     textBox.ScrollToEnd();4     textBox.IsEnabled = false;

当然,如果文本框不设置IsEnabled时,此方案是可行的。

注:如上方案,本来通过SelectionStart直接绑定TextBox自身的Text.Length就行。然而SelectionStart不是依赖属性,只能直接赋值~

 

作者:
出处:
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须在文章页面给出原文连接,否则保留追究法律责任的权利。
你可能感兴趣的文章
内部类的作用
查看>>
CentOS 6.7安装在VMWare中Bridge模式下网卡eth0不能自动激活的问题
查看>>
iptables实现网络防火墙(一)
查看>>
SAVE
查看>>
MFC 导入EXCEL到数据库
查看>>
【ASP.NET 类库】当你懒得用 Json+Ajax 时,可以试试 AjaxPro
查看>>
使用深度学习检测DGA(域名生成算法)——LSTM的输入数据本质上还是词袋模型...
查看>>
【转】利用mybatis-generator自动生成代码
查看>>
架构师应该了解的知识1
查看>>
在Flex (Flash)中嵌入HTML 代码或页面—Flex IFrame
查看>>
防止Direct Input获取多次输入
查看>>
Interspeech 2017 | Self-adaptive Speech Recognition Technology
查看>>
Linux中MySQL数据库max_allowed_packet的调整
查看>>
MySQL 学习笔记 二
查看>>
Host prepare for your automation work
查看>>
Thinkphp中field和getField
查看>>
AngularJS之初级Route【一】(六)
查看>>
QTP的那些事--采用DOM,描述性编程获取指定的对象
查看>>
linux异步通信之epoll【转】
查看>>
前端自学路线之js篇
查看>>