我有一个列表框,显示一组引用文本文件的文件名。我认为显示完整路径在美学上没什么吸引力,因此我使用Path.GetFileName
来切断目录部分。
但是现在当用户选择要打开的特定文件名时,我已经丢失了路径。这些文件可以位于本地计算机上的任何位置(暂时)。
如何使用列表框以便我可以显示漂亮的文件名,还可以参考实际的文件?
编辑:我喜欢为每个列表框项目设置自定义包装类。
答案 0 :(得分:2)
我过去所做的是为我想要在ListBox中显示的对象创建一个包装类。在此类中,将ToString
覆盖到要在ListBox中显示的字符串。
当您需要获取所选项目的详细信息时,将其强制转换为包装类并提取所需的数据。
这是一个丑陋的例子:
class FileListBoxItem
{
public string FileFullname { get; set; }
public override string ToString() {
return Path.GetFileName(FileFullname);
}
}
使用FileListBoxItems填充ListBox:
listBox1.Items.Add(new FileListBoxItem { FileFullname = @"c:\TestFolder\file1.txt" })
取回所选文件的全名,如下所示:
var fileFullname = ((FileListBoxItem)listBox1.SelectedItem).FileFullname;
修改强>
@ user1154664在对原始问题的评论中提出了一个很好的观点:如果显示的文件名相同,用户将如何区分两个ListBox项目?
以下是两个选项:
还显示每个FileListBoxItem的父目录
要执行此操作,请将ToString
覆盖更改为:
public override string ToString() {
var di = new DirectoryInfo(FileFullname);
return string.Format(@"...\{0}\{1}", di.Parent.Name, di.Name);
}
在工具提示中显示FileListBoxItem的完整路径
为此,请在表单上删除ToolTip组件,并为ListBox添加MouseMove
事件处理程序,以检索用户将鼠标悬停在FileFullname
上的FileLIstBoxItem
属性值
private void listBox1_MouseMove(object sender, MouseEventArgs e) {
string caption = "";
int index = listBox1.IndexFromPoint(e.Location);
if ((index >= 0) && (index < listBox1.Items.Count)) {
caption = ((FileListBoxItem)listBox1.Items[index]).FileFullname;
}
toolTip1.SetToolTip(listBox1, caption);
}
当然,您可以将第二个选项与第一个选项一起使用。
对于ListBox中的工具提示Source(接受的答案,代码重新格式化为我喜欢的风格)。
答案 1 :(得分:1)
如果使用WPF,请使用ListBoxItem.Tag
存储每个项目的完整路径。或者,如果使用WinForms,您可以创建一个存储完整路径的自定义类,但会覆盖object.ToString(),以便只显示文件名。
class MyPathItem
{
public string Path { get; set; }
public override string ToString()
{
return System.IO.Path.GetFileName(Path);
}
}
...
foreach (var fullPath in GetFullPaths())
{
myListBox.Add(new MyPathItem { Path = fullPath });
}
答案 2 :(得分:1)
就我个人而言,我不同意你的观点,认为这对用户来说是丑陋的。显示完整路径会向用户提供明确的详细信息,使他们对自己的选择或他们正在做的事情充满信心。
我会使用Dictionary
,使用项索引作为键,并使用此列表项的完整路径作为值。
Dictionary<int, string> pathDict = new Dictionary<int, string>();
pathDict.Add(0, "C:\SomePath\SomeFileName.txt");
...
以上可能是使用item.Tag
属性...
我希望这会有所帮助。
答案 3 :(得分:1)
我这样做
public class ListOption
{
public ListOption(string text, string value)
{
Value = value;
Text = text;
}
public string Value { get; set; }
public string Text { get; set; }
}
然后创建我的列表
List<ListOption> options = new List<ListOption>()
For each item in files
options.Add(new ListOption(item.Name, item.Value));
Next
绑定我的列表
myListBox.ItemSource = options;
然后获取我的价值或文字
protected void List_SelectionChanged(...)
{
ListOption option = (ListOption) myListBox.SelectedItem;
doSomethingWith(option.Value);
}
这里的想法是主要的东西