我有这个项目,您可以将文件拖放到其中,并将所有项目添加到列表框中。
然后它会提示您MessageBox询问您是否要查看扩展名。
当你按“是”时,它应该提示你一个MessageBox,告诉你每个文件有哪个文件扩展名,逐个循环遍历,每个项目1个消息框,即“.txt”“。exe”“pdf “等等。
但由于某种原因,它没有显示任何扩展,所以只有一个空白的MessageBox。
using System;
using System.IO;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace dragndrop
{
public partial class frmMain : Form
{
public frmMain()
{
AllowDrop = true;
InitializeComponent();
}
private void frmMain_DragEnter(object sender, DragEventArgs e)
{
if (e.Data.GetDataPresent(DataFormats.FileDrop))
e.Effect = DragDropEffects.Copy;
}
private void frmMain_DragDrop(object sender, DragEventArgs e)
{
string[] files = (string[])e.Data.GetData(DataFormats.FileDrop);
lBox.Items.AddRange(files);
DialogResult dr = MessageBox.Show("Would you like to see the extension?", "Option", MessageBoxButtons.YesNoCancel);
if(dr == DialogResult.Yes)
{
string text = "";
foreach (var item in lBox.Items)
{
string ext = Path.GetExtension(text);
MessageBox.Show(ext);
}
}
else
{
}
}
}
}
答案 0 :(得分:1)
应该 item
而不是 text
,
foreach (var item in lBox.Items)
{
string ext = Path.GetExtension(item);
MessageBox.Show(ext);
}