我创建了一个活动,其中private void RichTextBlock_Loaded(object sender, RoutedEventArgs e)
{
var richtextblock = sender as RichTextBlock;
// Check if the content of the RichTextBlock was trimmed.
if (richtextblock.HasOverflowContent)
{
// Prepare hyperlink and set visibility to visible.
}
}
。在此textView
中,我附加了textView
数据库中的一些记录。我想为最后插入的记录设置不同的颜色,而不是mysql
的最后一条记录。我怎样才能实现这一目标?
这是我的代码:
JSONArray
谢谢!