java做的抽奖转盘

时间:2015-01-15 11:49:40
【文件属性】:

文件名称:java做的抽奖转盘

文件大小:8.62MB

文件格式:RAR

更新时间:2015-01-15 11:49:40

java

java课程设计 package com.lzw; import java.awt.*; import java.awt.event.*; import javax.swing.*; public class Demo extends JFrame { private final class ButtonActionListener implements ActionListener { private final ImagePanel imagePanel; private Thread imageThread; private ButtonActionListener(ImagePanel imagePanel) { this.imagePanel = imagePanel; } public void actionPerformed(final ActionEvent e) { if (imageThread == null || !imageThread.isAlive()) { imageThread = new Thread(imagePanel); imageThread.start(); } else if (!imageThread.isAlive()) { imageThread.start(); } } } public static void main(String args[]) { EventQueue.invokeLater(new Runnable() { public void run() { try { Demo frame = new Demo(); frame.setVisible(true); } catch (Exception e) { e.printStackTrace(); } } }); } public Demo() { super(); setTitle("抽奖大转盘"); setResizable(false); setBounds(100, 100, 700, 700); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); final ImagePanel imagePanel = new ImagePanel(); getContentPane().add(imagePanel, BorderLayout.CENTER); final JButton button = new JButton(); button.setCursor(Cursor .getPredefinedCursor(Cursor.HAND_CURSOR)); button.setPressedIcon(new ImageIcon(getClass() .getResource("bt2.png"))); button.setFocusPainted(false); button.setBorderPainted(false); button.addActionListener(new ButtonActionListener( imagePanel)); button.setIcon(new ImageIcon(getClass().getResource( "bt.png"))); button.setOpaque(false); button.setContentAreaFilled(false); button.setBorder(null); button.setBounds(277, 202, 139, 209); imagePanel.add(button); } }


【文件预览】:
22.02
----进阶与提高()
--------net()
----src()
--------com()
----bin()
--------com()
--------net()
----.classpath(355B)
----.settings()
--------org.eclipse.jdt.core.prefs(629B)
----.project(501B)

网友评论

  • 还不错,可以用的
  • 谢谢分享,挺好用的
  • 用别的方法实现了,这个多下了
  • 虽然不是我想要的,不过还不错,稍加修改用在了别的地方
  • 很好,不错,能用
  • 的确是一个很不错的小demo,解决了我一大难题。
  • 虽然不是我想要的 但还是可以学习下吧
  • 稍加修改就可以使用了,挺好的,虽然最后还是用了*来抽奖
  • 稍加修改就可以使用了,挺好的,虽然最后没有用到。
  • 非常给力啊,持续关注
  • 虽然不是我想要的,但是还是不错的!
  • 非常推荐大家使用!程序很好!!赞 .
  • 非常推荐大家使用!程序很好!!赞
  • 虽然不是我想要的 但是还是给了一定的启发
  • 想要的不是这样的,不过也不错
  • 不错了 但只有页面没有直接跟个能跑起来的嘛
  • 下载之前没注意看,是swing组件的,不是网页的。
  • 不错,可以用,挺基础的,值得下载!
  • swing做的例子呀,好像很基础
  • 运行没问题,但是对我没有什么帮助。。
  • 可以运行。可以如何转动图片。
  • 感觉还行,给个赞
  • 可以参考,是swing做的
  • 很强大的程序
  • swing 做的 不是jsp的 不知道可不可以用!!