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.
是否可以将锁定的 WorkflowDesigner 视图添加到 WPF 应用程序?锁定是指无法对工作流模型进行任何更改或编辑。
是的,通过更改 ReadOnlyState
var readOnlyState = _workflowDesigner.Context.Items.GetValue<ReadOnlyState>(); readOnlyState.IsReadOnly = true;