通过在Windows快捷方式上拖动文件来处理文件

时间:2017-11-29 15:12:20

标签: c# winforms drag-and-drop

我正在开发一个Windows应用程序,它将安装在用户计算机上。并且用户应该能够将文件拖到已安装的应用程序的快捷方式上。应用程序应该处理该文件。是否有任何我可以收听的事件可以让我处理丢弃的文件?

1 个答案:

答案 0 :(得分:0)

编辑Program.Main以接受命令行参数

static class Program
{
    /// <summary>
    /// The main entry point for the application.
    /// </summary>
    [STAThread]
    static void Main(string[] args)
    {
        if(args != null)
        {
            //handle args here...
        }
        Application.EnableVisualStyles();
        Application.SetCompatibleTextRenderingDefault(false);
        Application.Run(new Form1());
    }
}