17 lines
424 B
Java
17 lines
424 B
Java
|
import java.awt.*;
|
||
|
import javax.swing.*;
|
||
|
import java.awt.event.*;
|
||
|
|
||
|
public class Mainvolume{
|
||
|
public static void main(String[] args) {
|
||
|
|
||
|
JFrame fenetre = new JFrame();
|
||
|
Volume pan = new Volume();
|
||
|
fenetre.setSize(1000, 150);
|
||
|
fenetre.setLocation(0, 0);
|
||
|
fenetre.addMouseWheelListener(pan);
|
||
|
fenetre.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
|
||
|
fenetre.setContentPane(pan);
|
||
|
fenetre.setVisible(true);
|
||
|
}
|
||
|
}
|