我直接从WindowsAPI Pack for .NET(包装器)获得TaskDialog源,但每当我尝试在程序的静态void Main()区域中直接打开TaskDialog时,它会抛出一个EntryPointNotFoundException。但是,TaskDialog会在我的代码中生成并显示完全正常。为什么会这样?
抛出EntryPointNotFoundException的代码是
/// <summary>
/// TaskDialogIndirect taken from commctl.h
/// </summary>
/// <param name="pTaskConfig">All the parameters about the Task Dialog to Show.</param>
/// <param name="pnButton">The push button pressed.</param>
/// <param name="pnRadioButton">The radio button that was selected.</param>
/// <param name="pfVerificationFlagChecked">The state of the verification checkbox on dismiss of the Task Dialog.</param>
[DllImport("ComCtl32", CharSet = CharSet.Unicode, PreserveSig = false)]
internal static extern void TaskDialogIndirect(
[In] ref TASKDIALOGCONFIG pTaskConfig,
[Out] out int pnButton,
[Out] out int pnRadioButton,
[Out] out bool pfVerificationFlagChecked);
但是让我感到震惊的是,不同地方的相同代码可以工作一次但不能在另一时间工作。它可能与程序没有加载引用或某事有关,但它只是让我感到震惊。我的应用程序入口点的代码是
try
{
var taskDialog = new TaskDialog();
taskDialog.WindowTitle = ".NET Update Notification";
taskDialog.MainInstruction = "";
taskDialog.MainIcon = TaskDialogIcon.Error;
taskDialog.EnableHyperlinks = true;
taskDialog.Content =
"Your .NET Framework Version is out-of-date.\nPlease see <a href=\"***********\">the forums</a> for more info.\n\nSorry, but I can't continue without it.\n\n If you had the correct install this message wouldn't appear.";
taskDialog.Callback =
new TaskDialogCallback((ActiveTaskDialog _taskDialog, TaskDialogNotificationArgs _args, object _callbackData) =>
{
if (_args.Notification == TaskDialogNotification.HyperlinkClicked)
{
Process.Start(_args.Hyperlink);
}
return false;
});
var doItButton = new TaskDialogButton();
doItButton.ButtonId = 101;
doItButton.ButtonText = "Quit";
taskDialog.Buttons = new TaskDialogButton[] { doItButton };
int result = taskDialog.Show(null);
Application.Exit();
}
/*
* Handles the error message regarding ComCtl32.dll not being found.
* In the event of the beautiful TaskDialog above (which uses ComCtl32.dll)
* cannot be opened, fall back to an ugly as **** MessageBox with a '?' Help
* button in the title bar -.-
*/
catch (EntryPointNotFoundException)
{
MessageBox.Show(
"Your .NET Framework Version is out-of-date.\nTo find out how to get .NET 4.0 simply visit the forums at *********.\n\nSorry, but I can't continue without it :(",
".NET Update Notification", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
感谢您的时间:)
约什
答案 0 :(得分:0)
从MSDN尝试此解决方案 -
步骤1:右键单击解决方案资源管理器中的项目
第2步:选择 - &gt;添加 - &gt;新物品
步骤3:在VS 2010中添加app.manifest的应用程序清单文件
步骤4:从依赖标记upto / dependency
开始取消注释最后一个xml部分代码看起来应该是这样的 -
<dependency>
<dependentAssembly>
<assemblyIdentity
type="win32"
name="Microsoft.Windows.Common-Controls"
version="6.0.0.0"
processorArchitecture="*"
publicKeyToken="6595b64144ccf1df"
language="*"
/>