将按钮插入 JFace 表
如何将 SWT Button 控件插入 JFace TableViewer 中?
How can I insert a SWT Button control into JFace TableViewer ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何将 SWT Button 控件插入 JFace TableViewer 中?
How can I insert a SWT Button control into JFace TableViewer ?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
给出的答案是一个很好的方法,可以在表格内部或外部使用自定义绘图实现您自己的按钮。但是,您可以将 SWT 控件放入 JFace 表中。
http://www.java2s.com/Code/Java/SWT -JFace-Eclipse/Place ArbitrarycontrolsinaSWTtable.htm
用于构建包含链接提供的组合框、文本字段和按钮的列的表的解决方案是:
The answer given is nice a nice way to implement your own buttons with custom drawings, in or outside the a table. However, you can put SWT controls in JFace Tables.
http://www.java2s.com/Code/Java/SWT-JFace-Eclipse/PlacearbitrarycontrolsinaSWTtable.htm
The solution for building a table with columns containing comboboxes, text fields, and buttons provided by the link is:
你不能。更一般地说,您不能在 SWT 中的表和树中插入任何小部件,因为并非所有平台都支持它。你可以做的是
对按钮在正常状态和单击状态下的屏幕截图进行两张;
将正常屏幕截图作为图像放入表格中;
处理 TableItem 上的点击。
以下是复选框的示例: http://tom- eclipse-dev.blogspot.com/2007/01/tableviewers-and-nativelooking.html
You can't. More generally, you can't insert any widgets in tables and trees in SWT, because not all platforms support it. What you can do instead is
Take two screenshots of the button in normal and clicked states;
Put the normal screenshot in table as an image;
Handle clicks on the TableItem.
Here is an example for checkboxes: http://tom-eclipse-dev.blogspot.com/2007/01/tableviewers-and-nativelooking.html