zoukankan      html  css  js  c++  java
  • e805. 监听JProgressBar的数值变化

    Whenever the value of a progress bar is changed, a change event is fired. In fact, the event is also fired when the minimum or maximum values are changed. However, the event does not specify which values were changed.

        // Create a horizontal progress bar
        int minimum = 0;
        int maximum = 100;
        JProgressBar progress = new JProgressBar(minimum, maximum);
        
        progress.addChangeListener(new ChangeListener() {
            // This method is called when the value, minimum, or maximum is changed.
            public void stateChanged(ChangeEvent evt) {
                JProgressBar comp = (JProgressBar)evt.getSource();
        
                // The old value is not available
        
                // Get new values
                int value = comp.getValue();
                int min = comp.getMinimum();
                int max = comp.getMaximum();
            }
        });
    
    Related Example
  • 相关阅读:
    Lambda表达式的演变
    反射小例
    进程外Session
    页面缓存的几种方式
    数据缓存的几种方式
    Session
    Cookie
    AJAX学习
    验证码的实现
    ASP.NET动态显示数据的两种方式
  • 原文地址:https://www.cnblogs.com/borter/p/9596189.html
Copyright © 2011-2022 走看看