22 references to GridResizeBehavior
PresentationFramework (22)
src\Framework\System\Windows\Controls\GridSplitter.cs (22)
178typeof(GridResizeBehavior), 180new FrameworkPropertyMetadata(GridResizeBehavior.BasedOnAlignment), 186public GridResizeBehavior ResizeBehavior 188get { return (GridResizeBehavior)GetValue(ResizeBehaviorProperty); } 195GridResizeBehavior resizeBehavior = (GridResizeBehavior)o; 196return resizeBehavior == GridResizeBehavior.BasedOnAlignment || 197resizeBehavior == GridResizeBehavior.CurrentAndNext || 198resizeBehavior == GridResizeBehavior.PreviousAndCurrent || 199resizeBehavior == GridResizeBehavior.PreviousAndNext; 336private GridResizeBehavior GetEffectiveResizeBehavior(GridResizeDirection direction) 338GridResizeBehavior resizeBehavior = ResizeBehavior; 340if (resizeBehavior == GridResizeBehavior.BasedOnAlignment) 347resizeBehavior = GridResizeBehavior.PreviousAndCurrent; 350resizeBehavior = GridResizeBehavior.CurrentAndNext; 353resizeBehavior = GridResizeBehavior.PreviousAndNext; 362resizeBehavior = GridResizeBehavior.PreviousAndCurrent; 365resizeBehavior = GridResizeBehavior.CurrentAndNext; 368resizeBehavior = GridResizeBehavior.PreviousAndNext; 535case GridResizeBehavior.PreviousAndCurrent: 540case GridResizeBehavior.CurrentAndNext: 1004public GridResizeBehavior ResizeBehavior;