如何从IntelliJ IDEA插件DevKit中的操作显示ColorPicker?

时间:2019-03-26 05:08:47

标签: java intellij-idea plugins intellij-plugin

如何通过IntelliJ IDEA插件DevKit中的操作显示ColorPicker? 例如,我有一个动作:

public class TextBoxes extends AnAction {
    public void actionPerformed(AnActionEvent event) {
        // Some code
    }
}

我要在其中显示ColorPicker小部件的

ColorPicker colorPicker = new ColorPicker(args); // Like that
ColorPicker.showDialog(args); // Or like that

在新的ColorPicker(args)格式中,需要一个Disposable父对象。我应该从哪里买到这个? 在ColorPicker.showDialog(args);中还需要一个组件父对象。再次,我不明白该从哪里获得该对象? 从com.intellij.ui.ColorPicker包中显示ColorPicker的正确方法是哪种?

1 个答案:

答案 0 :(得分:0)

请这样做:

public class TextBoxes extends AnAction {
  @Override
  public void actionPerformed(AnActionEvent event) {
    Color color = ColorPicker.showDialog(...)
  }
}