如何在IntelliJ IDEA插件DevKit中显示我的动作中的ColorPicker?

问题描述 投票:0回答:1

如何在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);还需要一个Component父对象。而且我无法理解我应该在哪里获得这个对象?哪一个是从com.intellij.ui.ColorPicker包中显示ColorPicker的正确方法?

java intellij-idea plugins intellij-plugin
1个回答
0
投票

请这样做:

public class TextBoxes extends AnAction {
  @Override
  public void actionPerformed(AnActionEvent event) {
    Color color = ColorPicker.showDialog(...)
  }
}
© www.soinside.com 2019 - 2024. All rights reserved.