Пример #1
0
        void MapLoaded(object sender, MapLoadedEventArgs e)
        {
            MainTextCallback mtc    = new MainForm.MainTextCallback(MainTextUpdate);
            string           update = "LibClassicBotGUI - Loaded map.";

            this.Invoke(mtc, new object[] { update });
        }
Пример #2
0
        void MapLoading(object sender, MapProgressEventArgs e)
        {
            UpdateProgressBar(e.PercentDone);
            MainTextCallback mtc    = new MainForm.MainTextCallback(MainTextUpdate);
            string           update = "LibClassicBotGUI - Loading map.. " + e.PercentDone.ToString();

            this.Invoke(mtc, new object[] { update });
        }
Пример #3
0
 void MapLoading(object sender, MapProgressEventArgs e)
 {
     UpdateProgressBar(e.PercentDone);
     MainTextCallback mtc = new MainForm.MainTextCallback(MainTextUpdate);
     string update = "LibClassicBotGUI - Loading map.. "+ e.PercentDone.ToString();
     this.Invoke(mtc, new object[] { update } );
 }
Пример #4
0
 void MapLoaded(object sender, MapLoadedEventArgs e)
 {
     MainTextCallback mtc = new MainForm.MainTextCallback(MainTextUpdate);
     string update = "LibClassicBotGUI - Loaded map.";
     this.Invoke(mtc, new object[] { update } );
 }