예제 #1
0
        void fmr_MessageComplete(IMessage msg, TimeSpan time)
        {
            MessageViewer mv  = new MessageViewer(msg, client);
            string        txt = String.Format("Message {0} took {1} seconds to download", msg.UID, time.TotalSeconds);

            UpdateProgressBar(-1, -1);
            UpdateLabel(txt);
            Application.Run(mv);
        }
예제 #2
0
파일: Form1.cs 프로젝트: gavioto/evimsync
 void fmr_MessageComplete(IMessage msg, TimeSpan time)
 {
     MessageViewer mv = new MessageViewer(msg,client);
     string txt = String.Format("Message {0} took {1} seconds to download", msg.UID, time.TotalSeconds);
     UpdateProgressBar(-1,-1);
     UpdateLabel(txt);
     Application.Run(mv);
 }