iMon.XBMC.DisplayHandler.SetIcon C# (CSharp) 메소드

SetIcon() 공개 메소드

public SetIcon ( iMonLcdIcons icon, bool show ) : void
icon iMonLcdIcons
show bool
리턴 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);
            }
        }