2 instantiations of AccessText
PresentationFramework (2)
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
1592bamlType.DefaultConstructor = delegate() { return new System.Windows.Controls.AccessText(); };
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
1126case KnownElements.AccessText: o = new System.Windows.Controls.AccessText(); break;
43 references to AccessText
PresentationFramework (43)
src\Framework\System\Windows\Automation\Peers\ButtonBaseAutomationPeer.cs (1)
74result = AccessText.RemoveAccessKeyMarker(result);
src\Framework\System\Windows\Automation\Peers\GroupBoxAutomationPeer.cs (1)
47return AccessText.RemoveAccessKeyMarker(result);
src\Framework\System\Windows\Automation\Peers\LabelAutomationPeer.cs (1)
46return AccessText.RemoveAccessKeyMarker(result);
src\Framework\System\Windows\Automation\Peers\MenuItemAutomationPeer.cs (1)
304return AccessText.RemoveAccessKeyMarker(result);
src\Framework\System\Windows\Automation\Peers\TabItemAutomationPeer.cs (1)
49return AccessText.RemoveAccessKeyMarker(result);
src\Framework\System\Windows\Controls\AccessText.cs (18)
134typeof(AccessText), 155TextElement.FontFamilyProperty.AddOwner(typeof(AccessText)); 174TextElement.FontStyleProperty.AddOwner(typeof(AccessText)); 189TextElement.FontWeightProperty.AddOwner(typeof(AccessText)); 204TextElement.FontStretchProperty.AddOwner(typeof(AccessText)); 219TextElement.FontSizeProperty.AddOwner(typeof(AccessText)); 236TextElement.ForegroundProperty.AddOwner(typeof(AccessText)); 252typeof(AccessText), 272typeof(AccessText), 292typeof(AccessText), 311Block.LineHeightProperty.AddOwner(typeof(AccessText)); 327Block.LineStackingStrategyProperty.AddOwner(typeof(AccessText)); 342Block.TextAlignmentProperty.AddOwner(typeof(AccessText)); 358typeof(AccessText), 379typeof(AccessText), 399TextBlock.BaselineOffsetProperty.AddOwner(typeof(AccessText), new FrameworkPropertyMetadata(new PropertyChangedCallback(OnPropertyChanged))); 505((AccessText)d).TextBlock.SetValue(e.Property, e.NewValue); 713((AccessText) d).UpdateText((string) e.NewValue);
src\Framework\System\Windows\Controls\ContentPresenter.cs (6)
58text.SetValue(AccessText.TextProperty, new TemplateBindingExtension(ContentProperty)); 229bool oldHasAccessKey = (oldString.IndexOf(AccessText.AccessKeyMarker) > -1); 230bool newHasAccessKey = (newString.IndexOf(AccessText.AccessKeyMarker) > -1); 717text.SetBinding(AccessText.TextProperty, binding); 893if (this.RecognizesAccessKey && s.IndexOf(AccessText.AccessKeyMarker) > -1) 951FrameworkElementFactory text = new FrameworkElementFactory(typeof(AccessText));
src\Framework\System\Windows\Controls\Primitives\BulletDecorator.cs (4)
401AccessText accessText = child as AccessText; 414AccessText accessText = root as AccessText;
src\Framework\System\Windows\Documents\TextRangeBase.cs (2)
874if (AccessText.HasCustomSerialization(element)) 876textBuffer.Append(AccessText.AccessKeyMarker);
src\Framework\System\Windows\Documents\TextSchema.cs (1)
837typeof(AccessText).IsAssignableFrom(parentType))
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
93case 1: t = () => typeof(AccessText); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (3)
1712Type type = typeof(System.Windows.Controls.AccessText); 1713DependencyProperty dp = System.Windows.Controls.AccessText.TextProperty; 1715this.GetXamlType(typeof(System.Windows.Controls.AccessText)), // DeclaringType
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
1590typeof(System.Windows.Controls.AccessText),
src\Framework\System\Windows\Markup\KnownTypes.cs (2)
1683return System.Windows.Controls.AccessText.TextProperty; 5545case KnownElements.AccessText: t = typeof(System.Windows.Controls.AccessText); break;