本文介绍了如何在vb.net中的ListView中使特定值变为粗体的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 我正在尝试使文本以粗体显示,并在列表视图中更改特定列的文本大小,但我无法做到。我已尝试使用以下代码.Thnx。 For Each Row As DataRow In DataSt.Tables(0).Rows mitem = New ListViewItem mitem.UseItemStyleForSubItems = False mitem.Text = row.Item(IssID)'在Lvw中,第一列应为Text mitem.SubItems.Add(row。 Item(Descrptn)) 如果row.Item(Status)= True则 mitem.SubItems.Add(Active)。ForeColor = Color.Green '需要加粗 mitem.SubItems.Add(Active)。Text = Font.Bold'不起作用 ElseIf row.Item(Status)= False然后 mitem.SubItems.Add(Closed) mitem.SubItems.Add(Active)。ForeColor = Color.Red End If 解决方案 Hi, i am trying to make the text appear in bold and to change the text size for a particular colum in a list view, but i am unable to . i have tried with the following code.Thnx .For Each row As DataRow In DataSt.Tables(0).Rows mitem = New ListViewItem mitem.UseItemStyleForSubItems = False mitem.Text = row.Item("IssID") 'In Lvw the first column should be Text mitem.SubItems.Add(row.Item("Descrptn")) If row.Item("Status") = True Then mitem.SubItems.Add("Active").ForeColor = Color.Green 'Need to make it bold mitem.SubItems.Add("Active").Text = Font.Bold ' doesnt work ElseIf row.Item("Status") = False Then mitem.SubItems.Add("Closed") mitem.SubItems.Add("Active").ForeColor = Color.Red End If 解决方案 这篇关于如何在vb.net中的ListView中使特定值变为粗体的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 10-20 03:42