0

I'm implementing a drag and drop operation, which works perfectly fine for files, folders, links, URIs, etc. The only thing left is windows special shortcuts, such as the "Programs and Features" control panel item. Those shortcuts seem to execute windows within the shell, as opposed to links or msc files. How can I store this type of drop data and launch the item referenced at a later time? (i.e. bookmark it within my WPF app) I guess what I'm really asking is, how do I interpret the drop data?

4

1 に答える 1

0

これを理解するために、シェル名前空間がどのように機能するかについて読む必要がありました (この記事を見つけるまで、「名前空間」と呼ばれていることを本当に知りませんでした): http://msdn.microsoft.com/en-us/library/ Windows/デスクトップ/cc144090(v=vs.85).aspx

同様に、このコードはそれをよりよく理解するのに役立ちました: http://www.codeproject.com/Articles/3551/C-does-Shell-Part-1

このサイトは、.net の正しい dll インポート コードを見つけるのに役立ちました: http://www.pinvoke.net/

于 2013-01-01T13:57:11.773 に答える