C# WinForms - Smart TextBox Control to auto-Format Path length based on Textbox width (C# WinForms - 智能文本框控件根据文本框宽度自动格式化路径长度)
问题描述
是否存在可以根据文本框宽度显示路径的智能文本框控件 (WinForms).例如,如果路径很短,它将显示整个路径 (C:myfile.txt),但如果路径很长,它将显示开始和结束 (C:SomeFolder...fooMyFile.txt).显示字符的长度应由文本框使用其宽度(动态)计算.欢迎任何商业或开源建议.非常感谢.
Does a smart textbox control (WinForms) exists that can display a path depending on the textbox width. For example, if the path is short it will display the entire path (C:myfile.txt), but if the path is long it will display the start and end (C:SomeFolder...fooMyFile.txt). The length of the characters displayed should be calculated (dynamically) by the textbox using its width. Any commercial or open source suggestions are welcome. Thank you very much.
推荐答案
是的,它是 TextRenderer.DrawText() 方法的内置功能.它的重载之一接受 TextFormatFlags 参数,您可以传递 TextFormatFlags.PathEllipsis.对 TextBox 这样做是不合适的,用户无法合理地编辑这样的缩写路径,您将不知道原始路径可能是什么.Label 是最好的控件.
Yes, it's a built-in capability of the TextRenderer.DrawText() method. One of its overloads accepts a TextFormatFlags argument, you can pass TextFormatFlags.PathEllipsis. Doing this for a TextBox is not appropriate, the user cannot reasonably edit such an abbreviated path, you would have no idea what the original path might be. A Label is the best control.
向您的项目添加一个新类并粘贴如下所示的代码.编译.将新控件从工具箱顶部拖放到表单上.不要太小.
Add a new class to your project and paste the code shown below. Compile. Drop the new control from the top of the toolbox onto your form. Don't make it too small.
using System;
using System.ComponentModel;
using System.Windows.Forms;
class PathLabel : Label {
[Browsable(false)]
public override bool AutoSize {
get { return base.AutoSize; }
set { base.AutoSize = false; }
}
protected override void OnPaint(PaintEventArgs e) {
TextFormatFlags flags = TextFormatFlags.Left | TextFormatFlags.PathEllipsis;
TextRenderer.DrawText(e.Graphics, this.Text, this.Font, this.ClientRectangle, this.ForeColor, flags);
}
}
这篇关于C# WinForms - 智能文本框控件根据文本框宽度自动格式化路径长度的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:C# WinForms - 智能文本框控件根据文本框宽度自动格式化路径长度
基础教程推荐
- Moq It.Is<>不匹配 2022-01-01
- .NET SerialPort DataReceived 事件未触发 2022-01-01
- WPF 模态进度窗口 2022-01-01
- 我应该在后面的代码中直接使用 Linq To SQL 还是使 2022-01-01
- 当值可以是对象或空数组时反序列化 JSON 2022-01-01
- 禁止输入少量字符,例如'<'、'&a 2022-01-01
- 如果有人提交恶意软件Nuget包怎么办? 2022-01-01
- 如何使用 .Net 检查 Active Directory 服务器是否已启动并正在运行? 2022-01-01
- Azure Functions:CosmosDBTrigger 未在 Visual Studio 中触发 2022-01-01
- C# 从 List<List<int>> 中删除重 2022-01-01
