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;