ListView 和 GestureListView 有什么区别?
ListView 和 GestureListView 有什么区别?例子会很有帮助。
What's the difference between ListView and GestureListView? Examples would be helpful.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
TListview 是一个 VCL 控件,基于 Windows
listview< /code>,该组件用于一般用途,支持不同的可视化(样式),如报告样式、列表、小图标等。
另一方面
TGestureListView
是TCustomListView
后代,用于显示手势名称和带有手势形状的小缩略图。the TListview is a VCL control, based in the windows
listview
, this component is for general use and supports different visualizations (styles) like report style, lists, small icons, etc.by the other hand the
TGestureListView
is aTCustomListView
descendant which was made to display the name of gestures and a small thumbnail with the gesture’s shape.