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