iMon.XBMC.DisplayHandler.SetIcon C# (CSharp) Method

SetIcon() public method

public SetIcon ( iMonLcdIcons icon, bool show ) : void
icon iMonLcdIcons
show bool
return void
        public void SetIcon(iMonLcdIcons icon, bool show)
        {
            this.icons[icon] = show;

            if (this.lcd)
            {
                Logging.Log("Display Handler", "Setting LCD icon " + icon + " to " + show);

                this.imon.LCD.Icons.Set(icon, show);
            }
        }