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)
142
previewElement.VerticalAlignment =
VerticalAlignment
.Top;
271
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)
3049
case
VerticalAlignment
.Top:
3050
case
VerticalAlignment
.Stretch:
3055
case
VerticalAlignment
.Center:
3059
case
VerticalAlignment
.Bottom:
System\Windows\Controls\Control.cs (4)
318
typeof(
VerticalAlignment
),
320
new FrameworkPropertyMetadata(
VerticalAlignment
.Top),
329
public
VerticalAlignment
VerticalContentAlignment
331
get { return (
VerticalAlignment
) GetValue(VerticalContentAlignmentProperty); }
System\Windows\Controls\DataGridCheckBoxColumn.cs (2)
49
style.Setters.Add(new Setter(CheckBox.VerticalAlignmentProperty,
VerticalAlignment
.Top));
78
style.Setters.Add(new Setter(CheckBox.VerticalAlignmentProperty,
VerticalAlignment
.Top));
System\Windows\Controls\DatePicker.cs (1)
1084
_calendar.VerticalAlignment =
VerticalAlignment
.Top;
System\Windows\Controls\GridSplitter.cs (3)
317
else if (VerticalAlignment !=
VerticalAlignment
.Stretch)
359
case
VerticalAlignment
.Top:
362
case
VerticalAlignment
.Bottom:
System\Windows\Controls\UserControl.cs (1)
33
VerticalContentAlignmentProperty.OverrideMetadata(typeof(UserControl), new FrameworkPropertyMetadata(
VerticalAlignment
.Stretch));
System\Windows\FrameworkElement.cs (17)
3797
typeof(
VerticalAlignment
),
3800
VerticalAlignment
.Stretch,
3806
VerticalAlignment
va = (
VerticalAlignment
)value;
3807
return ( va ==
VerticalAlignment
.Top
3808
|| va ==
VerticalAlignment
.Center
3809
|| va ==
VerticalAlignment
.Bottom
3810
|| va ==
VerticalAlignment
.Stretch);
3816
public
VerticalAlignment
VerticalAlignment
3818
get { return (
VerticalAlignment
) GetValue(VerticalAlignmentProperty); }
4640
if (VerticalAlignment !=
VerticalAlignment
.Stretch)
4832
VerticalAlignment
va = VerticalAlignment;
4842
if( va ==
VerticalAlignment
.Stretch
4845
va =
VerticalAlignment
.Top;
4863
if ( va ==
VerticalAlignment
.Center
4864
|| va ==
VerticalAlignment
.Stretch )
4868
else if (va ==
VerticalAlignment
.Bottom)
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (2)
2355
bamlMember.TypeConverterType = typeof(System.Windows.
VerticalAlignment
);
2655
bamlMember.TypeConverterType = typeof(System.Windows.
VerticalAlignment
);
PresentationUI (2)
MS\Internal\Documents\Application\PageTextBox.cs (2)
336
VerticalAlignment =
VerticalAlignment
.Center;
338
VerticalContentAlignment =
VerticalAlignment
.Center;
WindowsFormsIntegration (1)
System\Windows\Integration\ElementHost.cs (1)
312
childFrameworkElement.VerticalAlignment = SW.
VerticalAlignment
.Stretch;