- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我创建了一个具有放大和缩小功能的面板,但滚动条不起作用,我的意思是当我放大时,我无法滚动查看整个面板。
这是我的代码:
import javax.swing.JFrame;
import javax.swing.JPanel;
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Graphics;
import java.awt.Graphics2D;
import javax.swing.JScrollPane;
import java.awt.Dimension;
import javax.swing.JButton;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
@SuppressWarnings("serial")
public class PanelWithZoom extends JPanel{
private JButton btnZoomIn;
private JButton btnZoomOut;
private double scale = 1;
private JPanel innerPanel;
private JPanel outerPanel;
public PanelWithZoom() {
setLayout(new BorderLayout(0, 0));
JPanel panel = new JPanel();
add(panel, BorderLayout.NORTH);
btnZoomIn = new JButton("zoom in");
btnZoomIn.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
scale = scale + 0.1;
outerPanel.repaint();
outerPanel.revalidate();
}
});
panel.add(btnZoomIn);
btnZoomOut = new JButton("zoom out");
btnZoomOut.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
scale = scale - 0.1;
outerPanel.repaint();
outerPanel.revalidate();
}
});
panel.add(btnZoomOut);
JPanel panel_1 = new JPanel();
add(panel_1, BorderLayout.WEST);
JPanel panel_2 = new JPanel();
add(panel_2, BorderLayout.SOUTH);
JPanel panel_3 = new JPanel();
add(panel_3, BorderLayout.EAST);
outerPanel = new JPanel(){
@Override
protected void paintComponent(Graphics g) {
super.paintComponent(g);
Graphics2D g2 = (Graphics2D) g;
int w = (int) getWidth();
int h = (int) getHeight();
// Translate used to make sure scale is centered
g2.translate(w/2, h/2);
g2.scale(scale, scale);
g2.translate(-w/2, -h/2);
}
};
JScrollPane scroll = new JScrollPane(outerPanel);
add(scroll, BorderLayout.CENTER);
innerPanel = new JPanel(){
@Override
protected void paintComponent(Graphics g) {
Graphics2D g2 = (Graphics2D) g;
g2.setColor(Color.white);
g2.fillRect(0, 0, getWidth(), getHeight());
g2.setColor(Color.black);
g2.drawString("String for test", 10, 50);
g2.drawRect(0, 0, getWidth()-1, getHeight()-1);
setPreferredSize(new Dimension(595, 842));
}
};
outerPanel.add(innerPanel);
}
public static void main(String[] args) {
JFrame frame = new JFrame();
frame.setContentPane(new PanelWithZoom());
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setExtendedState(JFrame.MAXIMIZED_BOTH);
frame.setVisible(true);
}
}
你可以测试它来理解我的意思。
最佳答案
重写组件的getPreferredSize
方法,根据组件的scale
和原始大小返回组件的大小。
因为您想要对子组件应用缩放,所以您可能需要重写 paint
而不是 paintComponent
outerPanel = new JPanel(){
@Override
public void paint(Graphics g) {
Graphics2D g2 = (Graphics2D) g.create();
g2.scale(scale, scale);
super.paint(g);
g2.dispose()
}
}
但是,Swing 组件可以独立于其父容器进行绘制,这意味着在绘制子组件时可能不会调用 paint
方法...
这样做的问题是,它不会缩放鼠标事件(或一堆其他属性)。
随着问题列表不断增加,更好的解决方案是使用 JXLayer 之类的东西,如 here 所示。
旁注:
Graphics#create
复制Graphics
上下文和Graphics#dispose
的属性,在处理平移/转换/时更安全/渲染提示和一堆其他属性,因为对副本的任何更改都不会影响原始outerPanel = new JPanel(){
@Override
protected void paintComponent(Graphics g) {
super.paintComponent(g);
Graphics2D g2 = (Graphics2D) g.create();
int w = (int) getWidth();
int h = (int) getHeight();
// Translate used to make sure scale is centered
g2.translate(w/2, h/2);
g2.scale(scale, scale);
g2.translate(-w/2, -h/2);
g2.dispose();
}
}
关于java - 缩放面板但滚动条不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31786592/
今天有小伙伴给我留言问到,try{...}catch(){...}是什么意思?它用来干什么? 简单的说 他们是用来捕获异常的 下面我们通过一个例子来详细讲解下
我正在努力提高网站的可访问性,但我不知道如何在页脚中标记社交媒体链接列表。这些链接指向我在 facecook、twitter 等上的帐户。我不想用 role="navigation" 标记这些链接,因
说现在是 6 点,我有一个 Timer 并在 10 点安排了一个 TimerTask。之后,System DateTime 被其他服务(例如 ntp)调整为 9 点钟。我仍然希望我的 TimerTas
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我就废话不多说了,大家还是直接看代码吧~ ? 1
Maven系列1 1.什么是Maven? Maven是一个项目管理工具,它包含了一个对象模型。一组标准集合,一个依赖管理系统。和用来运行定义在生命周期阶段中插件目标和逻辑。 核心功能 Mav
我是一名优秀的程序员,十分优秀!