摘要:
/// <summary> /// 根据内容重设大小以达到不会显示滚动条 /// 测试:正确 /// 时间:202106021957 /// </summary> public class ReSizer { static int padBtm = 6;//此值基本合适不会出现滚动条[至少字体在 r 阅读全文
2021年6月2日 #
摘要:
让 rtb 不显示 横纵 滚动条的方法: a.设置属性: tb.ScrollBars=None; b.设置属性:rtb.WordWarp=False; c. 添加事件代码: rtb.ContentsResized(object sender, ContentsResizedEventArgs e) 阅读全文