23 references to TextAlignmentProperty
PresentationFramework (23)
MS\Internal\PtsHost\Line.cs (1)
58_textAlignment = (TextAlignment)TextParagraph.Element.GetValue(Block.TextAlignmentProperty);
MS\Internal\PtsHost\TextParagraph.cs (1)
212isParagraphJustified = ((TextAlignment)Element.GetValue(Block.TextAlignmentProperty)) == TextAlignment.Justify;
MS\Internal\Text\LineProperties.cs (1)
108: this(element, contentHost, defaultTextProperties, markerProperties, (TextAlignment)element.GetValue(Block.TextAlignmentProperty))
System\Windows\Controls\AccessText.cs (1)
340Block.TextAlignmentProperty.AddOwner(typeof(AccessText));
System\Windows\Controls\TextBlock.cs (1)
1019Block.TextAlignmentProperty.AddOwner(typeof(TextBlock));
System\Windows\Controls\TextBox.cs (1)
742public static readonly DependencyProperty TextAlignmentProperty = Block.TextAlignmentProperty.AddOwner(typeof(TextBox));
System\Windows\Controls\TextRangeAdaptor.cs (1)
202TextAlignment alignmentWCP = (TextAlignment)tp.GetValue(Block.TextAlignmentProperty);
System\Windows\Documents\AnchoredBlock.cs (1)
176Block.TextAlignmentProperty.AddOwner(typeof(AnchoredBlock));
System\Windows\Documents\Block.cs (4)
224get { return (TextAlignment)GetValue(TextAlignmentProperty); } 225set { SetValue(TextAlignmentProperty, value); } 237element.SetValue(TextAlignmentProperty, value); 248return (TextAlignment)element.GetValue(TextAlignmentProperty);
System\Windows\Documents\FlowDocument.cs (1)
336Block.TextAlignmentProperty.AddOwner(_typeofThis);
System\Windows\Documents\ListItem.cs (1)
213Block.TextAlignmentProperty.AddOwner(typeof(ListItem));
System\Windows\Documents\TableCell.cs (1)
232Block.TextAlignmentProperty.AddOwner(typeof(TableCell));
System\windows\Documents\TextEditorParagraphs.cs (4)
72TextEditorCharacters._OnApplyProperty(This, Block.TextAlignmentProperty, TextAlignment.Left, /*applyToParagraphs*/true); 87TextEditorCharacters._OnApplyProperty(This, Block.TextAlignmentProperty, TextAlignment.Center, /*applyToParagraphs*/true); 102TextEditorCharacters._OnApplyProperty(This, Block.TextAlignmentProperty, TextAlignment.Right, /*applyToParagraphs*/true); 117TextEditorCharacters._OnApplyProperty(This, Block.TextAlignmentProperty, TextAlignment.Justify, /*applyToParagraphs*/true);
System\Windows\Documents\TextRangeEdit.cs (1)
867else if (property == Paragraph.TextAlignmentProperty)
System\Windows\Documents\TextSchema.cs (2)
62Block.TextAlignmentProperty, 76Block.TextAlignmentProperty
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
7751DependencyProperty dp = System.Windows.Documents.Block.TextAlignmentProperty;