30 references to ControlBoolFlags
PresentationFramework (30)
System\Windows\Controls\ContentControl.cs (4)
489get { return ReadControlFlag(ControlBoolFlags.ContentIsNotLogical); } 490set { WriteControlFlag(ControlBoolFlags.ContentIsNotLogical, value); } 498get { return ReadControlFlag(ControlBoolFlags.ContentIsItem); } 499set { WriteControlFlag(ControlBoolFlags.ContentIsItem, value); }
System\Windows\Controls\Control.cs (5)
475get { return ReadControlFlag(ControlBoolFlags.VisualStateChangeSuspended); } 476set { WriteControlFlag(ControlBoolFlags.VisualStateChangeSuspended, value); } 738internal bool ReadControlFlag(ControlBoolFlags reqFlag) 743internal void WriteControlFlag(ControlBoolFlags reqFlag, bool set) 774internal ControlBoolFlags _controlBoolField; // Cache valid bits
System\Windows\Controls\HeaderedContentControl.cs (4)
308get { return ReadControlFlag(ControlBoolFlags.HeaderIsNotLogical); } 309set { WriteControlFlag(ControlBoolFlags.HeaderIsNotLogical, value); } 317get { return ReadControlFlag(ControlBoolFlags.HeaderIsItem); } 318set { WriteControlFlag(ControlBoolFlags.HeaderIsItem, value); }
System\Windows\Controls\HeaderedItemsControl.cs (6)
269WriteControlFlag(ControlBoolFlags.HeaderIsNotLogical, headerIsNotLogical); 389if (ReadControlFlag(ControlBoolFlags.HeaderIsNotLogical) || header == null) 540if (ReadControlFlag(ControlBoolFlags.HeaderIsNotLogical)) 546WriteControlFlag(ControlBoolFlags.HeaderIsNotLogical, true); 557get { return ReadControlFlag(ControlBoolFlags.HeaderIsItem); } 558set { WriteControlFlag(ControlBoolFlags.HeaderIsItem, value); }
System\Windows\Controls\ItemsControl.cs (3)
1723WriteControlFlag(ControlBoolFlags.ScrollHostValid, false); 3319if (!ReadControlFlag(ControlBoolFlags.ScrollHostValid)) 3338WriteControlFlag(ControlBoolFlags.ScrollHostValid, true);
System\Windows\Controls\MenuItem.cs (2)
2704get { return !ReadControlFlag(ControlBoolFlags.CommandDisabled); } 2709WriteControlFlag(ControlBoolFlags.CommandDisabled, !value);
System\Windows\Controls\Primitives\ButtonBase.cs (4)
759get { return ReadControlFlag(ControlBoolFlags.IsSpaceKeyDown); } 760set { WriteControlFlag(ControlBoolFlags.IsSpaceKeyDown, value); } 765get { return !ReadControlFlag(ControlBoolFlags.CommandDisabled); } 770WriteControlFlag(ControlBoolFlags.CommandDisabled, !value);
System\Windows\Controls\TreeViewItem.cs (2)
513get { return ReadControlFlag(ControlBoolFlags.ContainsSelection); } 514set { WriteControlFlag(ControlBoolFlags.ContainsSelection, value); }