void ZzhaMapGis_StaticClick(StaticObject EventStaticObj) { FalshStatics(); FlashMap(); }
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(); }
public void DelStaticObj(StaticObject so) { ImageAnimator.StopAnimate(so.StaticImage, null); StaticList.Remove(so); FalshStatics(); FlashMap(); }
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(); }