从Powerbuilder 12.6.NET调用.NET Messagebox

时间:2015-03-23 18:40:00

标签: wpf powerbuilder

我试图从WPF PowerBuilder 12.6应用程序中调用.NET函数。搜索文档并没有告诉我应该去哪里,但我可能没找对地方。在"使用多线程" " PowerBuilder .NET功能部分",以下代码(针对相关性进行了编辑):

//Declare a .NET Class
System.Threading.Thread ithread

ithread = create
ithread.IsBackground = true

当我将该代码放入脚本窗口时,Intellisense启动并向我展示了IsBackground方法。但是,如果我尝试以下内容:

System.Windows.Forms.MessageBox lo_MB

lo_MB = create System.Windows.Forms.MessageBox
lo_MB.

除了标准对象属性,我什么也得不到。我在这里缺少什么?

1 个答案:

答案 0 :(得分:0)

我不熟悉PowerBuilder但是对于.Net我使用C#或Vulcan(是的,存在且它也很好)。我在WPF程序中使用System.Windows.MessageBox。 System.Windows.Forms.MessageBox用于基于表单的程序,这就是它没有为您提供属性的原因。