gpt4 book ai didi

c# - 使用 C# Windows 应用程序填充 checkedListBox

转载 作者:太空宇宙 更新时间:2023-11-03 14:26:13 24 4
gpt4 key购买 nike

我想使用目录中的文件名填充 checkedListBox 控件,我现在可以使用以下代码执行此操作。

System.IO.DirectoryInfo di = new System.IO.DirectoryInfo(txtPath.Text.ToString());
System.IO.FileSystemInfo[] files = di.GetFileSystemInfos();
checkedListBox1.Items.AddRange(files);

但是当复选框被选中时,我想要获取文件名的路径。我该怎么做?

最佳答案

使用复选框项目的 SelectedIndexChanged 事件来查看哪个项目被选中,并从传递到事件处理程序的事件参数中拉取路径。

然后您可以使用 ((System.IO.FileSystemInfo)checkedListBox1.SelectedItem).FullName; 获取完整的文件路径和名称。如果需要,您可以使用正则表达式从文件名中提取路径。

您可以使用 checkedListBox 控件的 SelectedIndices 属性找到多个路径。

关于c# - 使用 C# Windows 应用程序填充 checkedListBox,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3903910/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com