gpt4 book ai didi

java - JSplitPane 上的绘图未显示

转载 作者:行者123 更新时间:2023-12-02 04:47:24 25 4
gpt4 key购买 nike

只是想在屏幕上画一些线。

  • 我已检查并确保所有相关代码都在运行
  • 我已尝试调用 repaint(并确保其正在运行)
  • 由于这是一个 JSplitPane,因此布局必须是 JSplitPane 布局
  • 我正在设置颜色以确保它不会使用背景颜色进行绘制。
  • 我已经检查了高度和宽度以确保其大小不为 0 或其他值
  • 我也尝试过绘制文本;结果相同
  • 我已经改变了所有地方的坐标,尝试了任意值和比例值

或者至少我认为。 Swing 是一种不直观的古怪行为。我会使用 AWT,但我需要 Swing 提供的特异性。无论如何,代码。它只是一个分割 Pane ,实际上正在显示 - 可调整大小和所有内容 - 但顶部 Pane 的内容(我尝试在其中放入任何内容的唯一一个)没有显示。

package derange;

import java.awt.Dimension;


import java.awt.GridLayout;

import javax.swing.*;

public class Derange {

private static void createAndShowGUI() {
//Create and set up the window.
JFrame frame = new JFrame("Derange");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
//Display the window.
frame.setExtendedState(frame.getExtendedState() | JFrame.MAXIMIZED_BOTH);
frame.pack();
frame.setVisible(true);


//Create a split pane with the two scroll panes in it.
PanelScore scorePane = new PanelScore();
JScrollPane instrumentPane = new JScrollPane();
JSplitPane splitPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT,
scorePane, instrumentPane);
splitPane.setOneTouchExpandable(true);
splitPane.setDividerLocation((frame.getHeight() / 4) * 3 );// Three-quarters of the way down
splitPane.setDividerSize(20);

//Provide minimum sizes for the two components in the split pane
Dimension minimumSize = new Dimension(frame.getWidth(), frame.getHeight()/ 2);//width, height
scorePane.setMinimumSize(minimumSize); //Score takes up at least half the screen
instrumentPane.setMinimumSize(new Dimension(0,0));//no minimum size on the instrument panel; collapsible

frame.getContentPane().add(splitPane);
}


public static void main(String[] args) {
javax.swing.SwingUtilities.invokeLater(new Runnable() {
public void run() {
createAndShowGUI();
}
});
}
}

.

package derange;

import java.awt.Color;
import java.awt.Dimension;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.GridLayout;
import java.awt.Insets;

import javax.swing.JScrollPane;

@SuppressWarnings("serial")//wtf is this needed for?

public class PanelScore extends JScrollPane{

public int strings = 6;

public void drawStaffTablature(Graphics g){
Graphics2D g2d = (Graphics2D) g;

g2d.setColor(Color.black);

int xStart = 30;//insets.left;
int xEnd = getParent().getWidth() - 30;
int yCoord = this.getHeight() / 2;
System.out.println(this.isShowing());

//Space between tablature lines
int lineSpacing = 15;
//Space between staffs.
int staffSpacing = 60;`enter code here`
for(int x = 0; x < strings; x++){
g2d.drawLine(xStart, yCoord + (lineSpacing * x), xEnd, yCoord + (lineSpacing * x));
//System.out.println("String: " + (x + 1));
g.drawString("Test", xStart, yCoord); //change the co-odrinates
}
}

@Override
public void paintComponent(Graphics g) {
super.paintComponent(g);
drawStaffTablature(g);
}
}

最佳答案

简短的回答,不要从 JScrollPane 扩展,JScrollPane 包含称为 JViewport 的单个组件,它涵盖了大部分内容滚动 Pane (其余部分由 JScrollBars

占据

enter image description here

相反,尝试从 JPanel 等扩展。

我还建议您不要在绘制代码中使用诸如 int xEnd = getParent().getWidth() - 30; 之类的内容,Graphics 上下文会被翻译到组件位置,将左上角 0x0 并剪裁到组件当前的宽度和高度

关于java - JSplitPane 上的绘图未显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29554124/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com