//StaticZoom private void StaticZoom_Click(object sender, EventArgs e) { ToolStripButton button = sender as ToolStripButton; if (button == null) { return; } object tag = button.Tag; if (ObjectType.ObjTst(tag, (object)"StaticZoom", false) == 0) { StaticZoom staticZoom = new StaticZoom(); staticZoom.Tag = (object)this.TileID; staticZoom.Show(); } }