«   2026/03   »
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31
Archives
Today
Total
관리 메뉴

wedul

rcp toolbar에서 label등 각종 contribution item 생성방법 본문

RCP/SWT & JFACE

rcp toolbar에서 label등 각종 contribution item 생성방법

wedul 2016. 12. 24. 00:07
반응형

    ToolBarManager manager = new ToolBarManager(SWT.FLAT | SWT.HORIZONTAL);
    
LabelContributionItem labelItem = new LabelContributionItem("myLabelId");  //Label ContibutionItem 생성
    manager.add(labelItem);
    
TextContributionItem textItem = new TextContributionItem("myTextId");
    manager.add(textItem);
    
ToolBar toolbar = manager.createControl(parent);
    
return toolbar;

 

출처: <http://stackoverflow.com/questions/28900682/what-is-the-proper-way-to-add-custom-controls-to-the-eclipse-toolbar-using-work>

반응형