23 references to TextAlignmentProperty
PresentationFramework (23)
src\Framework\MS\Internal\PtsHost\Line.cs (1)
67_textAlignment = (TextAlignment)TextParagraph.Element.GetValue(Block.TextAlignmentProperty);
src\Framework\MS\Internal\PtsHost\TextParagraph.cs (1)
224isParagraphJustified = ((TextAlignment)Element.GetValue(Block.TextAlignmentProperty)) == TextAlignment.Justify;
src\Framework\MS\Internal\Text\LineProperties.cs (1)
115: this(element, contentHost, defaultTextProperties, markerProperties, (TextAlignment)element.GetValue(Block.TextAlignmentProperty))
src\Framework\System\Windows\Controls\AccessText.cs (1)
342Block.TextAlignmentProperty.AddOwner(typeof(AccessText));
src\Framework\System\Windows\Controls\TextBlock.cs (1)
1101Block.TextAlignmentProperty.AddOwner(typeof(TextBlock));
src\Framework\System\Windows\Controls\TextBox.cs (1)
778public static readonly DependencyProperty TextAlignmentProperty = Block.TextAlignmentProperty.AddOwner(typeof(TextBox));
src\Framework\System\Windows\Controls\TextRangeAdaptor.cs (1)
212TextAlignment alignmentWCP = (TextAlignment)tp.GetValue(Block.TextAlignmentProperty);
src\Framework\System\Windows\Documents\AnchoredBlock.cs (1)
177Block.TextAlignmentProperty.AddOwner(typeof(AnchoredBlock));
src\Framework\System\Windows\Documents\Block.cs (4)
232get { return (TextAlignment)GetValue(TextAlignmentProperty); } 233set { SetValue(TextAlignmentProperty, value); } 248element.SetValue(TextAlignmentProperty, value); 262return (TextAlignment)element.GetValue(TextAlignmentProperty);
src\Framework\System\Windows\Documents\FlowDocument.cs (1)
344Block.TextAlignmentProperty.AddOwner(_typeofThis);
src\Framework\System\Windows\Documents\ListItem.cs (1)
221Block.TextAlignmentProperty.AddOwner(typeof(ListItem));
src\Framework\System\Windows\Documents\TableCell.cs (1)
252Block.TextAlignmentProperty.AddOwner(typeof(TableCell));
src\Framework\System\windows\Documents\TextEditorParagraphs.cs (4)
90TextEditorCharacters._OnApplyProperty(This, Block.TextAlignmentProperty, TextAlignment.Left, /*applyToParagraphs*/true); 105TextEditorCharacters._OnApplyProperty(This, Block.TextAlignmentProperty, TextAlignment.Center, /*applyToParagraphs*/true); 120TextEditorCharacters._OnApplyProperty(This, Block.TextAlignmentProperty, TextAlignment.Right, /*applyToParagraphs*/true); 135TextEditorCharacters._OnApplyProperty(This, Block.TextAlignmentProperty, TextAlignment.Justify, /*applyToParagraphs*/true);
src\Framework\System\Windows\Documents\TextRangeEdit.cs (1)
871else if (property == Paragraph.TextAlignmentProperty)
src\Framework\System\Windows\Documents\TextSchema.cs (2)
65Block.TextAlignmentProperty, 79Block.TextAlignmentProperty
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
7711DependencyProperty dp = System.Windows.Documents.Block.TextAlignmentProperty;