CSL_Traffic.UI.RoadCustomizerPanel.OnClick C# (CSharp) Method

OnClick() protected method

protected OnClick ( UIComponent comp, UIMouseEventParameter p ) : void
comp UIComponent
p UIMouseEventParameter
return void
        protected void OnClick(UIComponent comp, UIMouseEventParameter p)
        {
            p.Use();
            UIButton uIButton = comp as UIButton;
            if (uIButton != null && uIButton.parent == this.m_scrollablePanel)
            {
                this.OnButtonClicked(uIButton);
                this.m_selectedIndex = this.m_scrollablePanel.components.IndexOf(uIButton);
            }
        }