Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ボタンがあり、その上にテキストと画像を設定しようとしています:
button.setText("+"); button.setImage( PlatformUI.getWorkbench().getSharedImages().getImage( ISharedImages.IMG_OBJ_FILE ) );
ただし、このコードでは、画像がテキストの前に表示されます。
他の方法、つまり画像の前にテキストが必要です。
助言がありますか ?
設定を試すことができますがSWT.RIGHT_TO_LEFT、これがすべてのプラットフォームで機能するかどうかはわかりません。
SWT.RIGHT_TO_LEFT
Button button = new Button(parent, SWT.RIGHT_TO_LEFT);
PaintListenerボタンに a を追加し、そのpaintControlメソッドで大変な作業を行うことをお勧めします。
PaintListener
paintControl