18 references to Text
PresentationBuildTasks (18)
Framework\System\Windows\Markup\BamlRecordWriter.cs (3)
1420if (!MapTable.GetStringInfoId(xamlTextNode.Text, 1424xamlTextNode.Text); 1454bamlText.Value = xamlTextNode.Text;
Framework\System\Windows\Markup\StyleXamlParser.cs (4)
1166_styleTargetTypeString = xamlTextNode.Text; 1193for (int i = 0; i< xamlTextNode.Text.Length; i++) 1195if (!XamlReaderHelper.IsWhiteSpace(xamlTextNode.Text[i])) 1197ThrowException(SRID.StyleTextNotSupported, xamlTextNode.Text,
Framework\System\Windows\Markup\TemplateXamlParser.cs (5)
1290if (xamlTextNode.Text != null) 1292_templateTargetTypeType = XamlTypeMapper.GetTypeFromBaseString(xamlTextNode.Text, 1324for (int i = 0; i< xamlTextNode.Text.Length; i++) 1326if (!XamlReaderHelper.IsWhiteSpace(xamlTextNode.Text[i])) 1328ThrowException(SRID.TemplateTextNotSupported, xamlTextNode.Text,
Framework\System\Windows\Markup\XamlReaderHelper.cs (6)
6341if (null != textFlowData.TextNode && textFlowData.TextNode.Text.Length > 0) 6346collapsedText = CollapseText(textFlowData.TextNode.Text, 6441textFlowData.TextNode.UpdateText(textFlowData.TextNode.Text + 6442((XamlTextNode)xamlNode).Text); 6514if (IsWhitespace(textFlowData.TextNode.Text)) 6583(textFlowData.TextNode == null ? "" : textFlowData.TextNode.Text) /* Child */));