我需要在“ combobox”中隐藏“ .txt”扩展名,但我不知道如何。
而我该怎么做,该文件将从实际的addresesr和某些文件夹加载?现在我使用此代码:
我现在正在使用此代码:
DirectoryInfo di = new DirectoryInfo(@"C:\Users\JD_1609\source\repos\WindowsFormsApp1\WindowsFormsApp1\bin\Debug\PCs");
FileInfo[] Files = di.GetFiles("*.txt");
comboBox1.DataSource = Files;
comboBox1.DisplayMember = "Name";
但是,如果我将其转移到其他PC,那么它将无法正常工作?因此,我如何从实际地址加载器加载文件?
相关分类