Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试显示自定义成功消息,而不是基本的“操作已完成”。有人知道如何为某些特定的长时间操作实施它吗?(例如,仅用于作废对帐单)
基本上,可以从长操作中抛出PXOperationCompletedException一个自定义消息来完成它。这是一个例子
PXOperationCompletedException
PXLongOperation.StartOperation(this, () => { throw new PXOperationCompletedException("test"); });