2 overrides of HasLogicalOrientation
PresentationFramework (2)
src\Framework\System\Windows\Controls\Stack.cs (1)
332
protected internal override bool
HasLogicalOrientation
src\Framework\System\Windows\Controls\VirtualizingStackPanel.cs (1)
1739
protected internal override bool
HasLogicalOrientation
14 references to HasLogicalOrientation
PresentationFramework (14)
src\Framework\System\Windows\Controls\ItemsControl.cs (11)
2018
bool isHorizontal = (ItemsHost != null && ItemsHost.
HasLogicalOrientation
&& ItemsHost.LogicalOrientation == Orientation.Horizontal);
2299
bool isHorizontal = (ItemsHost.
HasLogicalOrientation
&& ItemsHost.LogicalOrientation == Orientation.Horizontal);
2384
bool isHorizontal = (ItemsHost.
HasLogicalOrientation
&& ItemsHost.LogicalOrientation == Orientation.Horizontal);
2450
bool isHorizontal = (ItemsHost.
HasLogicalOrientation
&& ItemsHost.LogicalOrientation == Orientation.Horizontal);
2593
isHorizontal = (ItemsHost.
HasLogicalOrientation
&& ItemsHost.LogicalOrientation == Orientation.Horizontal);
2642
bool isHorizontal = (ItemsHost.
HasLogicalOrientation
&& ItemsHost.LogicalOrientation == Orientation.Horizontal);
2743
bool isHorizontal = (ItemsHost.
HasLogicalOrientation
&& ItemsHost.LogicalOrientation == Orientation.Horizontal);
2796
bool isHorizontal = (ItemsHost.
HasLogicalOrientation
&& ItemsHost.LogicalOrientation == Orientation.Horizontal);
2797
bool isVertical = (ItemsHost.
HasLogicalOrientation
&& ItemsHost.LogicalOrientation == Orientation.Vertical);
3230
return (ItemsHost != null && ItemsHost.
HasLogicalOrientation
&& ItemsHost.LogicalOrientation == Orientation.Vertical &&
3240
return (ItemsHost != null && ItemsHost.
HasLogicalOrientation
&& ItemsHost.LogicalOrientation == Orientation.Horizontal &&
src\Framework\System\Windows\Controls\Menu.cs (2)
219
bool isVertical = itemsHost != null && itemsHost.
HasLogicalOrientation
&& itemsHost.LogicalOrientation == Orientation.Vertical;
233
bool isVertical = itemsHost != null && itemsHost.
HasLogicalOrientation
&& itemsHost.LogicalOrientation == Orientation.Vertical;
src\Framework\System\Windows\Controls\Panel.cs (1)
319
get { return
HasLogicalOrientation
; }