我正在使用Silverlight Toolkit for Windows Phone中的CustomMessageBox
控件。传递一个匿名回调(MS中的'委托'说话?)为suggested in the tutorials时,我引用了代码隐藏文件中定义的页面部分类的成员。当我在运行时到达逻辑时,这会构建和部署但崩溃。
我从VS调试器注意到回调内的范围只包含来自页面分部类的XAML端的成员,而不包含代码隐藏文件中的成员。这意味着我引用的成员不在范围内(即使Intellisense对它很好)。此外,我不能在回调中使用NavigationService.Navigate
。
如何从回调中调用包含类中的代码?
这是代码,
// This is a member of the partial class which inherits from
// PhoneApplicationPage
private void cancelBtn_Tap(object sender, System.Windows.Input.GestureEventArgs e)
{
if ((this.nameTextBox.Text != String.Empty) || (bool)this.protectCheckBox.IsChecked)
{
CustomMessageBox messageBox = new CustomMessageBox()
{
Caption = "Confirm leave page",
Message = "You have entered some profile data which will be lost if you leave this page. Are you sure you want to leave this page?",
LeftButtonContent = "no",
RightButtonContent = "yes"
};
messageBox.Dismissed += (s1, e1) =>
{
if (e1.Result == CustomMessageBoxResult.RightButton)
{
// Both of these raise an exception ...
GoToProfilePage();
//NavigationService.Navigate(new Uri("/View/MainPage.xaml", UriKind.Relative));
// Inspecting the debugger here shows only half the expected
// number of methods in the 'this' object - specifically only
// those defined in XAML
}
};
messageBox.Show();
}
else
{
// This works fine
GoToProfilePage();
}
}
GoToProfilePage()
是代码隐藏文件中的方法。
这是例外,
System.NullReferenceException was unhandled
Message=NullReferenceException
StackTrace:
at Microsoft.Phone.Controls.CustomMessageBox.ClosePopup(Boolean restoreOriginalValues)
at Microsoft.Phone.Controls.CustomMessageBox.c__DisplayClass4.b__1(Object s, EventArgs e)
at Microsoft.Phone.Controls.Transition.OnCompleted(Object sender, EventArgs e)
at MS.Internal.CoreInvokeHandler.InvokeEventHandler(Int32 typeIndex, Delegate handlerDelegate, Object sender, Object args)
at MS.Internal.JoltHelper.FireEvent(IntPtr unmanagedObj, IntPtr unmanagedObjArgs, Int32 argsTypeIndex, Int32 actualArgsTypeIndex, String eventName)
更新
看起来代码是执行的,只有当委托完成时引发了空引用异常,所以它可能不是范围的问题......
答案 0 :(得分:1)
好的想通了。最新版本的Windows Toolkit .dll(包括CustomMessageBox
)需要在我的解决方案中引用。
显然有一个旧版本的Windows工具包,它包含在某个地方的默认引用中,因为ContextMenu和CustomMessageBox至少部分预先工作,这非常令人困惑......
要添加更新的引用,我在单独的项目中从源构建了.dll并将其复制到我的项目中。我在VS中的Reference右键菜单中添加了一个引用,并浏览到debug\bin
目录中的文件。
答案 1 :(得分:1)
快速入侵是在工具包源代码中对CustomMessageBox.cs文件的第657行进行注释并再次编译。然后在您的应用中引用此新dll。
...
private void ClosePopup(bool restoreOriginalValues)
{
// Remove the popup.
_popup.IsOpen = false;
//_popup = null; <-- THIS IS LINE 657
...
中发布了一个问题