30 references to ControlBoolFlags
PresentationFramework (30)
System\Windows\Controls\ContentControl.cs (4)
479get { return ReadControlFlag(ControlBoolFlags.ContentIsNotLogical); } 480set { WriteControlFlag(ControlBoolFlags.ContentIsNotLogical, value); } 488get { return ReadControlFlag(ControlBoolFlags.ContentIsItem); } 489set { WriteControlFlag(ControlBoolFlags.ContentIsItem, value); }
System\Windows\Controls\Control.cs (5)
465get { return ReadControlFlag(ControlBoolFlags.VisualStateChangeSuspended); } 466set { WriteControlFlag(ControlBoolFlags.VisualStateChangeSuspended, value); } 722internal bool ReadControlFlag(ControlBoolFlags reqFlag) 727internal void WriteControlFlag(ControlBoolFlags reqFlag, bool set) 758internal ControlBoolFlags _controlBoolField; // Cache valid bits
System\Windows\Controls\HeaderedContentControl.cs (4)
302get { return ReadControlFlag(ControlBoolFlags.HeaderIsNotLogical); } 303set { WriteControlFlag(ControlBoolFlags.HeaderIsNotLogical, value); } 311get { return ReadControlFlag(ControlBoolFlags.HeaderIsItem); } 312set { WriteControlFlag(ControlBoolFlags.HeaderIsItem, value); }
System\Windows\Controls\HeaderedItemsControl.cs (6)
263WriteControlFlag(ControlBoolFlags.HeaderIsNotLogical, headerIsNotLogical); 383if (ReadControlFlag(ControlBoolFlags.HeaderIsNotLogical) || header == null) 534if (ReadControlFlag(ControlBoolFlags.HeaderIsNotLogical)) 540WriteControlFlag(ControlBoolFlags.HeaderIsNotLogical, true); 551get { return ReadControlFlag(ControlBoolFlags.HeaderIsItem); } 552set { WriteControlFlag(ControlBoolFlags.HeaderIsItem, value); }
System\Windows\Controls\ItemsControl.cs (3)
1686WriteControlFlag(ControlBoolFlags.ScrollHostValid, false); 3279if (!ReadControlFlag(ControlBoolFlags.ScrollHostValid)) 3298WriteControlFlag(ControlBoolFlags.ScrollHostValid, true);
System\Windows\Controls\MenuItem.cs (2)
2682get { return !ReadControlFlag(ControlBoolFlags.CommandDisabled); } 2687WriteControlFlag(ControlBoolFlags.CommandDisabled, !value);
System\Windows\Controls\Primitives\ButtonBase.cs (4)
747get { return ReadControlFlag(ControlBoolFlags.IsSpaceKeyDown); } 748set { WriteControlFlag(ControlBoolFlags.IsSpaceKeyDown, value); } 753get { return !ReadControlFlag(ControlBoolFlags.CommandDisabled); } 758WriteControlFlag(ControlBoolFlags.CommandDisabled, !value);
System\Windows\Controls\TreeViewItem.cs (2)
502get { return ReadControlFlag(ControlBoolFlags.ContainsSelection); } 503set { WriteControlFlag(ControlBoolFlags.ContainsSelection, value); }