码迷,mamicode.com
首页 > Windows程序 > 详细

WPF 字符串溢出判断,字符串长度是否超过控件宽度

时间:2018-04-04 14:48:56      阅读:650      评论:0      收藏:0      [点我收藏+]

标签:header   end   width   ellipsis   cte   溢出   eve   text   字符串长度   

TextBloc可以将TextTrimming属性设置为CharacterEllipsis

 

其他控件可以在控件大小变更或者其他事件上附加下列方法

 1         private void OnEllipsis(object sender, SizeChangedEventArgs e)
 2         {
 3             FormattedText formattedText = new FormattedText(
 4                 this.Header.ToString(),
 5                 Thread.CurrentThread.CurrentCulture,
 6                 this.FlowDirection,
 7                 new Typeface(this.FontFamily, this.FontStyle, this.FontWeight, this.FontStretch),
 8                 this.FontSize,
 9                 this.Foreground);
10 
11             this.IsEllipsis = formattedText.Width > e.NewSize.Width;
12         }

 

WPF 字符串溢出判断,字符串长度是否超过控件宽度

标签:header   end   width   ellipsis   cte   溢出   eve   text   字符串长度   

原文地址:https://www.cnblogs.com/RabbitCC/p/8716659.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!