3 instantiations of ReadOnlyState
System.Activities.Presentation (3)
System.Activities.Presentation\System\Activities\Presentation\Debugger\DebuggerService.cs (1)
216this.context.Items.SetValue(new ReadOnlyState() { IsReadOnly = readOnlyState.IsReadOnly });
System.Activities.Presentation\System\Activities\Presentation\View\DesignerView.xaml.cs (1)
871designerView.Context.Items.SetValue(new ReadOnlyState() { IsReadOnly = (bool)e.NewValue });
System.Activities.Presentation\System\Activities\Presentation\WorkflowDesigner.cs (1)
112this.context.Items.SetValue(new ReadOnlyState { IsReadOnly = false });
24 references to ReadOnlyState
System.Activities.Presentation (24)
System.Activities.Presentation\System\Activities\Presentation\Annotations\AnnotationManager.cs (5)
129this.floatingAnnotation.IsReadOnly = this.EditingContext.Items.GetValue<ReadOnlyState>().IsReadOnly; 148this.dockedAnnotation.IsReadOnly = this.EditingContext.Items.GetValue<ReadOnlyState>().IsReadOnly; 231this.EditingContext.Items.Subscribe<ReadOnlyState>(this.OnReadOnlyStateChanged); 272this.EditingContext.Items.Unsubscribe<ReadOnlyState>(this.OnReadOnlyStateChanged); 324private void OnReadOnlyStateChanged(ReadOnlyState state)
System.Activities.Presentation\System\Activities\Presentation\Debugger\DebuggerService.cs (2)
198ReadOnlyState readOnlyState = this.context.Items.GetValue<ReadOnlyState>();
System.Activities.Presentation\System\Activities\Presentation\DragDropHelper.cs (2)
198ReadOnlyState readOnlyState = context.Items.GetValue<ReadOnlyState>();
System.Activities.Presentation\System\Activities\Presentation\EditingContextUtilities.cs (1)
20return editingContext.Items.GetValue<ReadOnlyState>().IsReadOnly;
System.Activities.Presentation\System\Activities\Presentation\Model\ImmediateEditingScope.cs (2)
42ReadOnlyState readOnlyState = this.modelTreeManager.Context.Items.GetValue<ReadOnlyState>();
System.Activities.Presentation\System\Activities\Presentation\Model\ModelTreeManager.cs (2)
845ReadOnlyState readOnlyState = this.Context.Items.GetValue<ReadOnlyState>();
System.Activities.Presentation\System\Activities\Presentation\ReadOnlyState.cs (1)
17return typeof(ReadOnlyState);
System.Activities.Presentation\System\Activities\Presentation\View\DesignerView.xaml.cs (4)
127void OnReadOnlyStateChanged(ReadOnlyState state) 281ReadOnlyState state = this.Context.Items.GetValue<ReadOnlyState>(); 283this.Context.Items.Subscribe<ReadOnlyState>(OnReadOnlyStateChanged);
System.Activities.Presentation\System\Activities\Presentation\View\VisualBasicEditor.xaml.cs (2)
427ReadOnlyState readOnlyState = this.Context.Items.GetValue<ReadOnlyState>();
System.Activities.Presentation\System\Activities\Presentation\WorkflowDesigner.cs (2)
189this.context.Items.Subscribe<ReadOnlyState>(new SubscribeContextCallback<ReadOnlyState>(OnReadonlyStateChanged));
System.Activities.Presentation\System\Activities\Presentation\WorkflowDesigner.Helpers.cs (1)
166void OnReadonlyStateChanged(ReadOnlyState state)