2 types derived from BamlTextRecord
PresentationFramework (2)
src\Framework\System\Windows\Markup\BamlRecords.cs (2)
4069internal class BamlTextWithIdRecord : BamlTextRecord 4122internal class BamlTextWithConverterRecord : BamlTextRecord
1 instantiation of BamlTextRecord
PresentationFramework (1)
src\Framework\System\Windows\Markup\BamlRecords.cs (1)
656record = new BamlTextRecord();
6 references to BamlTextRecord
PresentationFramework (6)
src\Framework\System\Windows\Markup\BamlReader.cs (2)
1534string escapedString = EscapeString(((BamlTextRecord)_currentBamlRecord).Value); 2223_value = ((BamlTextRecord)_currentBamlRecord).Value;
src\Framework\System\Windows\Markup\BamlRecordReader.cs (2)
758ReadTextRecord((BamlTextRecord)bamlRecord); 3450protected virtual void ReadTextRecord(BamlTextRecord bamlTextRecord)
src\Framework\System\Windows\Markup\BamlRecordWriter.cs (2)
1406BamlTextRecord bamlText; 1411bamlText = (BamlTextRecord) BamlRecordManager.GetWriteRecord(BamlRecordType.Text);