32 references to BottomCenter
System.Windows.Forms (11)
System\Windows\Forms\Controls\Buttons\ButtonInternal\ButtonBaseAdapter.LayoutOptions.cs (1)
430case ContentAlignment.BottomCenter:
System\Windows\Forms\Controls\DataGridView\DataGridViewUtilities.cs (1)
31DataGridViewContentAlignment.BottomCenter => ContentAlignment.BottomCenter,
System\Windows\Forms\Controls\Labels\Label.cs (1)
281case ContentAlignment.BottomCenter:
System\Windows\Forms\Internal\WinFormsUtils.cs (2)
16public const ContentAlignment AnyBottomAlign = ContentAlignment.BottomLeft | ContentAlignment.BottomCenter | ContentAlignment.BottomRight; 18public const ContentAlignment AnyCenterAlign = ContentAlignment.TopCenter | ContentAlignment.MiddleCenter | ContentAlignment.BottomCenter;
System\Windows\Forms\Layout\LayoutUtils.cs (4)
19public const ContentAlignment AnyBottom = ContentAlignment.BottomLeft | ContentAlignment.BottomCenter | ContentAlignment.BottomRight; 22public const ContentAlignment AnyCenter = ContentAlignment.TopCenter | ContentAlignment.MiddleCenter | ContentAlignment.BottomCenter; 109Debug.Assert(result != 0x09 || alignment == ContentAlignment.BottomCenter, "Error detected in ContentAlignmentToIndex."); 479return (align & (ContentAlignment.TopCenter | ContentAlignment.BottomCenter)) != 0;
System\Windows\Forms\Rendering\ControlPaint.cs (2)
60= ContentAlignment.BottomLeft | ContentAlignment.BottomCenter | ContentAlignment.BottomRight; 62= ContentAlignment.TopCenter | ContentAlignment.MiddleCenter | ContentAlignment.BottomCenter;
System.Windows.Forms.Design (2)
System\Drawing\Design\ContentAlignmentEditor.ContentUI.cs (2)
64return ContentAlignment.BottomCenter; 96case ContentAlignment.BottomCenter:
System.Windows.Forms.Tests (19)
System\Windows\Forms\ButtonBaseTests.cs (3)
193yield return new object[] { FlatStyle.System, RightToLeft.Yes, ContentAlignment.BottomCenter, 0x56012B00, 0x6000 }; 203yield return new object[] { FlatStyle.System, RightToLeft.No, ContentAlignment.BottomCenter, 0x56012B00, 0 }; 213yield return new object[] { FlatStyle.System, RightToLeft.Inherit, ContentAlignment.BottomCenter, 0x56012B00, 0 };
System\Windows\Forms\ButtonTests.cs (3)
215yield return new object[] { FlatStyle.System, RightToLeft.Yes, ContentAlignment.BottomCenter, 0x56012B00, 0x6000 }; 225yield return new object[] { FlatStyle.System, RightToLeft.No, ContentAlignment.BottomCenter, 0x56012B00, 0 }; 235yield return new object[] { FlatStyle.System, RightToLeft.Inherit, ContentAlignment.BottomCenter, 0x56012B00, 0 };
System\Windows\Forms\ControlTests.Methods.cs (2)
6882yield return new object[] { RightToLeft.Yes, ContentAlignment.BottomCenter, ContentAlignment.BottomCenter };
System\Windows\Forms\LabelTests.cs (2)
390[InlineData(ContentAlignment.BottomCenter)] 840label.TextAlign = ContentAlignment.BottomCenter;
System\Windows\Forms\RadioButtonTests.cs (1)
181ContentAlignment.BottomCenter,
System\Windows\Forms\ToolStripButtonTests.cs (3)
1254yield return new object[] { ContentAlignment.BottomCenter, RightToLeft.Yes, ToolStripItemDisplayStyle.Text, 0, 1, TextFormatFlags.HorizontalCenter | TextFormatFlags.Bottom | TextFormatFlags.HidePrefix | TextFormatFlags.RightToLeft }; 1255yield return new object[] { ContentAlignment.BottomCenter, RightToLeft.Inherit, ToolStripItemDisplayStyle.Text, 0, 1, TextFormatFlags.HorizontalCenter | TextFormatFlags.Bottom | TextFormatFlags.HidePrefix }; 1256yield return new object[] { ContentAlignment.BottomCenter, RightToLeft.No, ToolStripItemDisplayStyle.Text, 0, 1, TextFormatFlags.HorizontalCenter | TextFormatFlags.Bottom | TextFormatFlags.HidePrefix };
System\Windows\Forms\ToolStripItemTests.cs (4)
4195[InlineData(ContentAlignment.BottomCenter, 1)] 4242[InlineData(ContentAlignment.BottomCenter, 1)] 8311[InlineData(ContentAlignment.BottomCenter, 1)] 8358[InlineData(ContentAlignment.BottomCenter, 1)]
System\Windows\Forms\ToolStripMenuItemTests.cs (1)
288ImageAlign = ContentAlignment.BottomCenter,