委托

作者: 入海遥 | 来源:发表于2018-01-17 09:55 被阅读10次

      delegate void delegateShowImage(Image im);

            private void ShowImage(Image ttt)

            {

                if (pictureBox1.InvokeRequired)

                {

                    delegateShowImage d = new delegateShowImage(ShowImage);

                    this.Invoke(d, new object[] { ttt });

                }

                else

                {

                    pictureBox1.Image = ttt;

                }

            }

      public Action<Image> ShowCurImage;

    wl.ShowCurImage = ShowImage;

    相关文章

      网友评论

          本文标题:委托

          本文链接:https://www.haomeiwen.com/subject/niyyoxtx.html