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