仅拖放PDF文件

时间:2016-04-18 13:26:50

标签: c# drag-and-drop listbox

我有以下代码列出我在列表框中拖动的文件。 现在我需要过滤所以它只能列出PDF文件并丢弃其余的。

private void Form1_Load(object sender, EventArgs e)
{
    listBoxFiles.AllowDrop = true;
    listBoxFiles.DragDrop += listBoxFiles_DragDrop;
    listBoxFiles.DragEnter += listBoxFiles_DragEnter;
}

private void listBoxFiles_DragEnter(object sender, DragEventArgs e)
{
    if (e.Data.GetDataPresent(DataFormats.FileDrop))
        e.Effect = DragDropEffects.Copy;
}

private void listBoxFiles_DragDrop(object sender, DragEventArgs e)
{
    string[] files = (string[])e.Data.GetData(DataFormats.FileDrop);
    foreach (string file in files)
        listBoxFiles.Items.Add(file);
}

1 个答案:

答案 0 :(得分:0)

试试这个:

    private void listBoxFiles_DragDrop(object sender, DragEventArgs e)
    {
        string[] files = (string[])e.Data.GetData(DataFormats.FileDrop);
        foreach (string file in files)
        {
            if (Path.GetExtension(file) == "pdf")
            {
                listBoxFiles.Items.Add(file);
            }
        }
    }

此外,如果它有效 - 您可以使用Linq

一行