Exemplo n.º 1
0
        protected internal string TankImageLarge(int countryID, int tankID, string tankDescription)
        {
            string tankName = string.Format("{0}_{1}_Large.png", countryID, tankID);

#if DEBUG
            return(string.Empty);
#else
            return(String.Format(@"<Image src='{0}' alt='{2}'/>", WOTHelper.GetImagePath(tankName), tankName, tankDescription));
#endif
        }
Exemplo n.º 2
0
        protected internal string TankImageToolTip(int countryID, int tankID, string tankDescription)
        {
            string tankName = string.Format("{0}_{1}.png", countryID, tankID);

            return(String.Format(@"<Image src='{0}'/>", WOTHelper.GetImagePath(tankName), tankName, tankDescription));
        }