Esempio n. 1
0
 void ZzhaMapGis_StaticClick(StaticObject EventStaticObj)
 {
     FalshStatics();
     FlashMap();
 }
Esempio n. 2
0
 public void AddStaticObj(float pointx, float pointy, string name, string key, string divname, Font staticfont, Color staticcolor)
 {
     StaticObject sobj = new StaticObject(pointx, pointy, name, key, divname, StaticType.Word, staticfont, staticcolor);
     this.StaticList.Add(sobj);
     FalshStatics();
 }
Esempio n. 3
0
 public void DelStaticObj(StaticObject so)
 {
     ImageAnimator.StopAnimate(so.StaticImage, null);
     StaticList.Remove(so);
     FalshStatics();
     FlashMap();
 }
Esempio n. 4
0
 public void AddStaticObj(float pointx, float pointy, Image img, string divname, int width, int height, string filepath, string name, string key, StaticType type, Font staticfont, Color staticcolor)
 {
     if (ImageAnimator.CanAnimate(img) && this.UseGif)
         ImageAnimator.Animate(img, null);
     StaticObject sobj = new StaticObject(pointx, pointy, img, divname, filepath, width, height, name, key, type, staticfont, staticcolor);
     this.StaticList.Add(sobj);
     FalshStatics();
 }