44 references to VerticalAlignment
Microsoft.CodeAnalysis.EditorFeatures.Wpf (2)
InlineHints\InlineHintsTag.cs (2)
169
VerticalAlignment =
VerticalAlignment
.Bottom,
180
VerticalAlignment =
VerticalAlignment
.Top
Microsoft.VisualStudio.LanguageServices (5)
PreviewPane\PreviewPane.xaml.cs (2)
143
previewElement.VerticalAlignment =
VerticalAlignment
.Top;
272
VerticalAlignment =
VerticalAlignment
.Center,
StackTraceExplorer\StackTraceExplorerToolWindow.cs (1)
133
VerticalAlignment =
VerticalAlignment
.Stretch
UnusedReferences\Dialog\UnusedReferencesTableProvider.ColumnDefinitions.cs (2)
70
VerticalAlignment =
VerticalAlignment
.Center
84
VerticalAlignment =
VerticalAlignment
.Center,
PresentationFramework (34)
MS\Internal\Documents\TextBoxView.cs (4)
3007
case
VerticalAlignment
.Top:
3008
case
VerticalAlignment
.Stretch:
3013
case
VerticalAlignment
.Center:
3017
case
VerticalAlignment
.Bottom:
System\Windows\Controls\Control.cs (4)
309
typeof(
VerticalAlignment
),
311
new FrameworkPropertyMetadata(
VerticalAlignment
.Top),
320
public
VerticalAlignment
VerticalContentAlignment
322
get { return (
VerticalAlignment
) GetValue(VerticalContentAlignmentProperty); }
System\Windows\Controls\DataGridCheckBoxColumn.cs (2)
45
style.Setters.Add(new Setter(CheckBox.VerticalAlignmentProperty,
VerticalAlignment
.Top));
74
style.Setters.Add(new Setter(CheckBox.VerticalAlignmentProperty,
VerticalAlignment
.Top));
System\Windows\Controls\DatePicker.cs (1)
1077
_calendar.VerticalAlignment =
VerticalAlignment
.Top;
System\Windows\Controls\GridSplitter.cs (3)
311
else if (VerticalAlignment !=
VerticalAlignment
.Stretch)
353
case
VerticalAlignment
.Top:
356
case
VerticalAlignment
.Bottom:
System\Windows\Controls\UserControl.cs (1)
27
VerticalContentAlignmentProperty.OverrideMetadata(typeof(UserControl), new FrameworkPropertyMetadata(
VerticalAlignment
.Stretch));
System\Windows\FrameworkElement.cs (17)
3777
typeof(
VerticalAlignment
),
3780
VerticalAlignment
.Stretch,
3786
VerticalAlignment
va = (
VerticalAlignment
)value;
3787
return ( va ==
VerticalAlignment
.Top
3788
|| va ==
VerticalAlignment
.Center
3789
|| va ==
VerticalAlignment
.Bottom
3790
|| va ==
VerticalAlignment
.Stretch);
3796
public
VerticalAlignment
VerticalAlignment
3798
get { return (
VerticalAlignment
) GetValue(VerticalAlignmentProperty); }
4620
if (VerticalAlignment !=
VerticalAlignment
.Stretch)
4814
VerticalAlignment
va = VerticalAlignment;
4824
if( va ==
VerticalAlignment
.Stretch
4827
va =
VerticalAlignment
.Top;
4845
if ( va ==
VerticalAlignment
.Center
4846
|| va ==
VerticalAlignment
.Stretch )
4850
else if (va ==
VerticalAlignment
.Bottom)
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (2)
2412
TypeConverterType = typeof(System.Windows.
VerticalAlignment
)
2736
TypeConverterType = typeof(System.Windows.
VerticalAlignment
)
PresentationUI (2)
MS\Internal\Documents\Application\PageTextBox.cs (2)
334
VerticalAlignment =
VerticalAlignment
.Center;
336
VerticalContentAlignment =
VerticalAlignment
.Center;
WindowsFormsIntegration (1)
System\Windows\Integration\ElementHost.cs (1)
308
childFrameworkElement.VerticalAlignment = SW.
VerticalAlignment
.Stretch;