7 implementations of CanResize
PresentationCore (1)
MS\Internal\Automation\TransformProviderWrapper.cs (1)
81public bool CanResize
PresentationFramework (3)
System\Windows\Automation\Peers\DataGridColumnHeaderItemAutomationPeer.cs (1)
146bool ITransformProvider.CanResize
System\Windows\Automation\Peers\GridSplitterAutomationPeer.cs (1)
34bool ITransformProvider.CanResize { get { return false; } }
System\Windows\Automation\Peers\GridViewColumnHeaderAutomationPeer.cs (1)
64bool ITransformProvider.CanResize { get { return true; } }
System.Windows.Controls.Ribbon (2)
Microsoft\Windows\Automation\Peers\RibbonMenuButtonAutomationPeer.cs (1)
221bool ITransformProvider.CanResize
Microsoft\Windows\Automation\Peers\RibbonMenuItemDataAutomationPeer.cs (1)
307bool ITransformProvider.CanResize
UIAutomationClient (1)
MS\Internal\Automation\HwndProxyElementProvider.cs (1)
885bool ITransformProvider.CanResize
4 references to CanResize
PresentationCore (1)
MS\Internal\Automation\TransformProviderWrapper.cs (1)
150return _iface.CanResize;
System.Windows.Controls.Ribbon (2)
Microsoft\Windows\Automation\Peers\RibbonMenuButtonAutomationPeer.cs (1)
244if (!((ITransformProvider)this).CanResize || width <= 0 || height <= 0)
Microsoft\Windows\Automation\Peers\RibbonMenuItemDataAutomationPeer.cs (1)
348if (!((ITransformProvider)this).CanResize || width <= 0 || height <= 0)
UIAutomationClient (1)
MS\Internal\Automation\HwndProxyElementProvider.cs (1)
776if ( ! ((ITransformProvider)this).CanResize )