一个简单的 委托

        public delegate void InvokeDelegate(string x);

        public void OnFaxSended(string fax)
        {
            //txtFax.Text += fax;
            //txtFax.Text += System.Environment.NewLine;
            txtFax.BeginInvoke(new InvokeDelegate(InvokeMethod),fax);
        }

        public void InvokeMethod(string x)
        {
            txtFax.Text += x;
            txtFax.Text += System.Environment.NewLine;
        }

posted @ 2011-10-27 11:34  ccqin  阅读(123)  评论(0编辑  收藏  举报