将CustomMessageBox与WP8一起使用

时间:2014-01-01 11:46:31

标签: vb.net xaml windows-phone-8

在我的WP8应用程序中,我必须使用CustomMessageBox。我使用VB.NET并看到here我必须使用WP Toolkit,我将其添加到我的XAML中:

xmlns:toolkit="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone.Controls.Toolkit"

我想做的事情很简单,消息框中的其他控件并不复杂,只是修改按钮文本。 现在我的问题很简单:我无法创建我的CustomMessageBox对象。在我给出的链接上,您可以看到示例:

CustomMessageBox messageBox = new CustomMessageBox()

有一些参数。这是C#,但基本上它应该以这种方式使用VB.NET:

Dim myMessageBox as CustomMessageBox = new CustomMessageBox()

但Visual Studio说“ 类型CustomMesageBox未定义 ”。任何的想法 ? 感谢

1 个答案:

答案 0 :(得分:1)

假设您已经下载了工具包并将其添加为项目参考,可能您错过了在C#中添加Imports(using):

Imports Microsoft.Phone.Controls