开发者

is there any way to hide list view Item in .net 2.0

开发者 https://www.devze.com 2023-01-10 04:24 出处:网络
is there 开发者_StackOverflowany way to hide list view Item in ListView ?You could override the rendering logic and choose for yourself which items to be ignored (i.e. not to be rendered, but still ex

is there 开发者_StackOverflowany way to hide list view Item in ListView ?


You could override the rendering logic and choose for yourself which items to be ignored (i.e. not to be rendered, but still exist in the item collection).


If you want to hide a specific row, you can use a filtered view as ListView's data source such as DataView. By setting filters on it, it will hide specific rows. You can also create custom filtered views.

0

精彩评论

暂无评论...
验证码 换一张
取 消