8 references to FlipSize
System.Windows.Forms (8)
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
2364maxSize = LayoutUtils.FlipSize(toolStrip.DefaultSize);
System\Windows\Forms\Controls\ToolStrips\ToolStripRenderer.cs (1)
877Size textSize = LayoutUtils.FlipSize(textRect.Size);
System\Windows\Forms\Layout\FlowLayout.VerticalElementProxy.cs (4)
51public override Size MinimumSize => LayoutUtils.FlipSize(base.MinimumSize); 53public override Size SpecifiedSize => LayoutUtils.FlipSize(base.SpecifiedSize); 57return LayoutUtils.FlipSize(base.GetPreferredSize(LayoutUtils.FlipSize(proposedSize)));
System\Windows\Forms\Layout\LayoutUtils.cs (2)
444rect.Size = FlipSize(rect.Size); 462return condition ? FlipSize(size) : size;