drag drop no longer working once application gets installed

后端 未结 2 1266
醉酒成梦
醉酒成梦 2021-01-21 04:34

I have an application that has drag and drop functionality to import images and video\'s. While developing, and testing through Visual Studio this has never given any problems.<

2条回答
  •  后悔当初
    2021-01-21 05:12

    Build a debug version of your application, build your installer with the output. You can either include the .pdb files in the installer or copy them to the install location after you install.

    Run the installed application, and then in Visual Studio, go to Debug --> Attach to Process. Select the process from the list, and click the "Attach" button. Add breakpoints, etc, and debug as normal.

    If you don't run into the problem on your build machine, you can also run a remote debugging session to debug the application on a different computer, but this requires a little more setup.

提交回复
热议问题