0

我想在 ProgressBar 为 0 或 100 时引发一个事件,但是尽管我努力我还没有在 Value Property 的 ProgressBar 事件中找到这样的事件,我想知道如何自己实现这样的事件?

我在哪里声明这样的事件?

4

1 回答 1

2

ProgressBar只是一个indicator,所以它不支持某些ValueChanged事件。但是,您可以根据需要对其进行自定义以支持此类事件和其他类似事件:

    public class CustomProgressBar : ProgressBar
    {
        public event EventHandler ReachedMinimum;
        public event EventHandler ReachedMaximum;
        public event EventHandler ValueChanged;            
        protected override void WndProc(ref Message m)
        {
            base.WndProc(ref m);
            if (m.Msg == 0x402)//PBM_SETPOS = WM_USER + 2
            {     
               EventHandler handler = ValueChanged;
               if(handler != null) handler(this, EventArgs.Empty);
               handler = ReachedMinimum;                    
               if (Value == Minimum && handler!=null) handler(this, EventArgs.Empty);
               handler = ReachedMaximum;
               if (Value == Maximum && handler != null) handler(this, EventArgs.Empty);
            } 
        }
    }
    //Use it
    customProgressBar1.ReachedMaximum += (s,e) => {
          MessageBox.Show("Reached maximum!");
    };
    //... the same for other events
于 2013-09-14T16:45:00.320 回答