23 references to TextAlignmentProperty
PresentationFramework (23)
MS\Internal\PtsHost\Line.cs (1)
49_textAlignment = (TextAlignment)TextParagraph.Element.GetValue(Block.TextAlignmentProperty);
MS\Internal\PtsHost\TextParagraph.cs (1)
200isParagraphJustified = ((TextAlignment)Element.GetValue(Block.TextAlignmentProperty)) == TextAlignment.Justify;
MS\Internal\Text\LineProperties.cs (1)
107: this(element, contentHost, defaultTextProperties, markerProperties, (TextAlignment)element.GetValue(Block.TextAlignmentProperty))
System\Windows\Controls\AccessText.cs (1)
339Block.TextAlignmentProperty.AddOwner(typeof(AccessText));
System\Windows\Controls\TextBlock.cs (1)
1016Block.TextAlignmentProperty.AddOwner(typeof(TextBlock));
System\Windows\Controls\TextBox.cs (1)
743public static readonly DependencyProperty TextAlignmentProperty = Block.TextAlignmentProperty.AddOwner(typeof(TextBox));
System\Windows\Controls\TextRangeAdaptor.cs (1)
201TextAlignment alignmentWCP = (TextAlignment)tp.GetValue(Block.TextAlignmentProperty);
System\Windows\Documents\AnchoredBlock.cs (1)
166Block.TextAlignmentProperty.AddOwner(typeof(AnchoredBlock));
System\Windows\Documents\Block.cs (4)
223get { return (TextAlignment)GetValue(TextAlignmentProperty); } 224set { SetValue(TextAlignmentProperty, value); } 236element.SetValue(TextAlignmentProperty, value); 247return (TextAlignment)element.GetValue(TextAlignmentProperty);
System\Windows\Documents\FlowDocument.cs (1)
335Block.TextAlignmentProperty.AddOwner(_typeofThis);
System\Windows\Documents\ListItem.cs (1)
212Block.TextAlignmentProperty.AddOwner(typeof(ListItem));
System\Windows\Documents\TableCell.cs (1)
231Block.TextAlignmentProperty.AddOwner(typeof(TableCell));
System\windows\Documents\TextEditorParagraphs.cs (4)
71TextEditorCharacters._OnApplyProperty(This, Block.TextAlignmentProperty, TextAlignment.Left, /*applyToParagraphs*/true); 86TextEditorCharacters._OnApplyProperty(This, Block.TextAlignmentProperty, TextAlignment.Center, /*applyToParagraphs*/true); 101TextEditorCharacters._OnApplyProperty(This, Block.TextAlignmentProperty, TextAlignment.Right, /*applyToParagraphs*/true); 116TextEditorCharacters._OnApplyProperty(This, Block.TextAlignmentProperty, TextAlignment.Justify, /*applyToParagraphs*/true);
System\Windows\Documents\TextRangeEdit.cs (1)
866else if (property == Paragraph.TextAlignmentProperty)
System\Windows\Documents\TextSchema.cs (2)
61Block.TextAlignmentProperty, 75Block.TextAlignmentProperty
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
8370DependencyProperty dp = System.Windows.Documents.Block.TextAlignmentProperty;