47 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)
69
VerticalAlignment =
VerticalAlignment
.Center
83
VerticalAlignment =
VerticalAlignment
.Center,
Microsoft.VisualStudio.LanguageServices.CSharp (3)
SemanticSearch\SemanticSearchToolWindowImpl.cs (3)
244
VerticalAlignment =
VerticalAlignment
.Bottom,
270
VerticalAlignment =
VerticalAlignment
.Top,
277
VerticalContentAlignment =
VerticalAlignment
.Top,
PresentationFramework (34)
MS\Internal\Documents\TextBoxView.cs (4)
3006
case
VerticalAlignment
.Top:
3007
case
VerticalAlignment
.Stretch:
3012
case
VerticalAlignment
.Center:
3016
case
VerticalAlignment
.Bottom:
System\Windows\Controls\Control.cs (4)
308
typeof(
VerticalAlignment
),
310
new FrameworkPropertyMetadata(
VerticalAlignment
.Top),
319
public
VerticalAlignment
VerticalContentAlignment
321
get { return (
VerticalAlignment
) GetValue(VerticalContentAlignmentProperty); }
System\Windows\Controls\DataGridCheckBoxColumn.cs (2)
44
style.Setters.Add(new Setter(CheckBox.VerticalAlignmentProperty,
VerticalAlignment
.Top));
73
style.Setters.Add(new Setter(CheckBox.VerticalAlignmentProperty,
VerticalAlignment
.Top));
System\Windows\Controls\DatePicker.cs (1)
1076
_calendar.VerticalAlignment =
VerticalAlignment
.Top;
System\Windows\Controls\GridSplitter.cs (3)
310
else if (VerticalAlignment !=
VerticalAlignment
.Stretch)
352
case
VerticalAlignment
.Top:
355
case
VerticalAlignment
.Bottom:
System\Windows\Controls\UserControl.cs (1)
26
VerticalContentAlignmentProperty.OverrideMetadata(typeof(UserControl), new FrameworkPropertyMetadata(
VerticalAlignment
.Stretch));
System\Windows\FrameworkElement.cs (17)
3776
typeof(
VerticalAlignment
),
3779
VerticalAlignment
.Stretch,
3785
VerticalAlignment
va = (
VerticalAlignment
)value;
3786
return ( va ==
VerticalAlignment
.Top
3787
|| va ==
VerticalAlignment
.Center
3788
|| va ==
VerticalAlignment
.Bottom
3789
|| va ==
VerticalAlignment
.Stretch);
3795
public
VerticalAlignment
VerticalAlignment
3797
get { return (
VerticalAlignment
) GetValue(VerticalAlignmentProperty); }
4619
if (VerticalAlignment !=
VerticalAlignment
.Stretch)
4813
VerticalAlignment
va = VerticalAlignment;
4823
if( va ==
VerticalAlignment
.Stretch
4826
va =
VerticalAlignment
.Top;
4844
if ( va ==
VerticalAlignment
.Center
4845
|| va ==
VerticalAlignment
.Stretch )
4849
else if (va ==
VerticalAlignment
.Bottom)
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (2)
2411
TypeConverterType = typeof(System.Windows.
VerticalAlignment
)
2735
TypeConverterType = typeof(System.Windows.
VerticalAlignment
)
PresentationUI (2)
MS\Internal\Documents\Application\PageTextBox.cs (2)
333
VerticalAlignment =
VerticalAlignment
.Center;
335
VerticalContentAlignment =
VerticalAlignment
.Center;
WindowsFormsIntegration (1)
System\Windows\Integration\ElementHost.cs (1)
307
childFrameworkElement.VerticalAlignment = SW.
VerticalAlignment
.Stretch;