30 references to ControlBoolFlags
PresentationFramework (30)
System\Windows\Controls\ContentControl.cs (4)
480get { return ReadControlFlag(ControlBoolFlags.ContentIsNotLogical); } 481set { WriteControlFlag(ControlBoolFlags.ContentIsNotLogical, value); } 489get { return ReadControlFlag(ControlBoolFlags.ContentIsItem); } 490set { WriteControlFlag(ControlBoolFlags.ContentIsItem, value); }
System\Windows\Controls\Control.cs (5)
466get { return ReadControlFlag(ControlBoolFlags.VisualStateChangeSuspended); } 467set { WriteControlFlag(ControlBoolFlags.VisualStateChangeSuspended, value); } 729internal bool ReadControlFlag(ControlBoolFlags reqFlag) 734internal void WriteControlFlag(ControlBoolFlags reqFlag, bool set) 765internal ControlBoolFlags _controlBoolField; // Cache valid bits
System\Windows\Controls\HeaderedContentControl.cs (4)
303get { return ReadControlFlag(ControlBoolFlags.HeaderIsNotLogical); } 304set { WriteControlFlag(ControlBoolFlags.HeaderIsNotLogical, value); } 312get { return ReadControlFlag(ControlBoolFlags.HeaderIsItem); } 313set { WriteControlFlag(ControlBoolFlags.HeaderIsItem, value); }
System\Windows\Controls\HeaderedItemsControl.cs (6)
264WriteControlFlag(ControlBoolFlags.HeaderIsNotLogical, headerIsNotLogical); 384if (ReadControlFlag(ControlBoolFlags.HeaderIsNotLogical) || header == null) 535if (ReadControlFlag(ControlBoolFlags.HeaderIsNotLogical)) 541WriteControlFlag(ControlBoolFlags.HeaderIsNotLogical, true); 552get { return ReadControlFlag(ControlBoolFlags.HeaderIsItem); } 553set { WriteControlFlag(ControlBoolFlags.HeaderIsItem, value); }
System\Windows\Controls\ItemsControl.cs (3)
1714WriteControlFlag(ControlBoolFlags.ScrollHostValid, false); 3310if (!ReadControlFlag(ControlBoolFlags.ScrollHostValid)) 3329WriteControlFlag(ControlBoolFlags.ScrollHostValid, true);
System\Windows\Controls\MenuItem.cs (2)
2694get { return !ReadControlFlag(ControlBoolFlags.CommandDisabled); } 2699WriteControlFlag(ControlBoolFlags.CommandDisabled, !value);
System\Windows\Controls\Primitives\ButtonBase.cs (4)
748get { return ReadControlFlag(ControlBoolFlags.IsSpaceKeyDown); } 749set { WriteControlFlag(ControlBoolFlags.IsSpaceKeyDown, value); } 754get { return !ReadControlFlag(ControlBoolFlags.CommandDisabled); } 759WriteControlFlag(ControlBoolFlags.CommandDisabled, !value);
System\Windows\Controls\TreeViewItem.cs (2)
509get { return ReadControlFlag(ControlBoolFlags.ContainsSelection); } 510set { WriteControlFlag(ControlBoolFlags.ContainsSelection, value); }