0

Is it possible to add a locked WorkflowDesigner View to a WPF application? By locked I mean no change or editing whatsoever can be done to the Workflow Model.

Louis Rhys
  • 34,517
  • 56
  • 153
  • 221

1 Answers1

0

Yes by changing the ReadOnlyState

var readOnlyState = _workflowDesigner.Context.Items.GetValue<ReadOnlyState>();
readOnlyState.IsReadOnly = true;
Maurice
  • 27,582
  • 5
  • 49
  • 62