Ejemplo n.º 1
0
    public void SetColorText(string strColor)
    {
        if (IsAlert)
        {
            m_isColorAlert = true;
            ButtonExpand.SetColor("", strColorText: UIEvents.ColorAlert);
            return;
        }
        if (strColor == UIEvents.ColorAlert)
        {
            m_isColorAlert = true;
        }
        else
        {
            m_isColorAlert = false;
        }

        ButtonExpand.SetColor("", strColorText: strColor);
        //ButtonExpand.SetColor(strColor, strColor);
    }