显示消息

时间:2017-09-20 08:48:01

标签: acumatica

在C#中显示类似于 MsgBox 的消息的最快方法是什么? 我试过这个:

Base.Document.View.Ask("Hello World", MessageButtons.OK);

它发布但我在执行时遇到错误。

1 个答案:

答案 0 :(得分:3)

对于该用例,抛出异常就足够了:

throw new PXException("Hello World");

它使用浏览器主题消息框: enter image description here

对于调试,我更喜欢使用痕迹:

PXTrace.WriteInformation("Hello World");

消息将显示在跟踪窗口中: enter image description here

您可以在大多数Acumatica屏幕的帮助菜单中打开跟踪窗口: enter image description here