为什么我的MessageBox没有显示任何文件扩展名?

时间:2016-12-24 14:02:24

标签: c# .net wpf winforms listbox

我有这个项目,您可以将文件拖放到其中,并将所有项目添加到列表框中。

然后它会提示您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
            {

            }
        }
    }
}

1 个答案:

答案 0 :(得分:1)

应该 item 而不是 text

 foreach (var item in lBox.Items)
 {
    string ext = Path.GetExtension(item);
    MessageBox.Show(ext);
 }