18 references to Text
PresentationBuildTasks (18)
src\Microsoft.DotNet.Wpf\src\PresentationFramework\System\Windows\Markup\BamlRecordWriter.cs (3)
1405if (!MapTable.GetStringInfoId(xamlTextNode.Text, 1409xamlTextNode.Text); 1439bamlText.Value = xamlTextNode.Text;
src\Microsoft.DotNet.Wpf\src\PresentationFramework\System\Windows\Markup\StyleXamlParser.cs (4)
1154_styleTargetTypeString = xamlTextNode.Text; 1181for (int i = 0; i< xamlTextNode.Text.Length; i++) 1183if (!XamlReaderHelper.IsWhiteSpace(xamlTextNode.Text[i])) 1185ThrowException(nameof(SR.StyleTextNotSupported), xamlTextNode.Text,
src\Microsoft.DotNet.Wpf\src\PresentationFramework\System\Windows\Markup\TemplateXamlParser.cs (5)
1278if (xamlTextNode.Text != null) 1280_templateTargetTypeType = XamlTypeMapper.GetTypeFromBaseString(xamlTextNode.Text, 1312for (int i = 0; i< xamlTextNode.Text.Length; i++) 1314if (!XamlReaderHelper.IsWhiteSpace(xamlTextNode.Text[i])) 1316ThrowException(nameof(SR.TemplateTextNotSupported), xamlTextNode.Text,
src\Microsoft.DotNet.Wpf\src\PresentationFramework\System\Windows\Markup\XamlReaderHelper.cs (6)
6382if (null != textFlowData.TextNode && textFlowData.TextNode.Text.Length > 0) 6387collapsedText = CollapseText(textFlowData.TextNode.Text, 6482textFlowData.TextNode.UpdateText(textFlowData.TextNode.Text + 6483((XamlTextNode)xamlNode).Text); 6555if (IsWhitespace(textFlowData.TextNode.Text)) 6624(textFlowData.TextNode == null ? "" : textFlowData.TextNode.Text) /* Child */));