私のアプリケーションにthis libraryを統合しようとしています。ファイル 'Microsoft.Windows.Common-Controls、Version = 6.0.0.0、Culture = *、PublicKeyToken = 6595b64144ccf1df、
最初は
Unable to find an entry point named 'TaskDialogIndirect' in DLL 'ComCtl32'.
で墜落したhere推奨されていたように、私は
<dependentAssembly>
<assemblyIdentity
type="win32"
name="Microsoft.Windows.Common-Controls"
version="6.0.0.0"
processorArchitecture="*"
publicKeyToken="6595b64144ccf1df"
language="*"
/>
</dependentAssembly>
をコメント解除。私はマイクロソフトのリボンを使用していますので、アプリがクラッシュしapp.manifest
Could not find file 'Microsoft.Windows.Common-Controls, Version=6.0.0.0, Culture=*,
PublicKeyToken=6595b64144ccf1df, ProcessorArchitecture=*, Type=win32'
削除:
これでアプリケーションは、次のようなメッセージでコンパイルされません。
このエラーを解決するにはどうすればよいですか?
これを実行しようとしているWindowsのバージョンは? –
win7 64ビット.... –