0
Eclipse RCP 환경에서 IMessageManager
구현을 통해 추가 된 메시지의 색상을 변경하고 싶습니다. 해당 컨트롤에서 색상을 설정하려고 시도했지만 효과가 없습니다.Eclipse RCP : IMessageManager에서 메시지 색상 변경
Device device = Display.getCurrent();
Color red = new Color(device, 255, 0, 0);
control.setForeground(red);
messageManager.addMessage(MESSAGE_KEY, message, null, IMessageProvider.INFORMATION, control);
이 기능을 제공하는 기존 인터페이스가 있습니까? 사전
고맙다. – StarSheriff