1

リストビューの Item.subItemsCollection のテキストの一部を選択する方法を探しています。

     item.subitem[0].text = "thats text";

しかし、「thats」という単語の文字「ats」のみを強調表示(色を変更)したいのです。誰でも私を助けることができますか?

4

2 に答える 2

2

There is certainly no easy way to do this, but you can use someone else's work :)

ObjectListView -- an open source wrapper around a .NET ListView control -- has a HighlightTextRenderer which will do exactly that. Read about it here.

Here, it is highlighting "er":

enter image description here

于 2012-04-17T23:37:19.387 に答える
0

また、 Better ListViewを確認することもできます。これには、これを行うアイテムの強調表示機能が含まれています (入力および検索フィルタリングによる検索と組み合わせることができます)。

ここに画像の説明を入力

于 2014-04-22T22:53:38.410 に答える