Example #1
0
 protected internal void OnListItemClick(GListItem who)
 {
     if (this.m_OnClick != null)
     {
         base.SetTag("Clicked", who);
         this.m_OnClick(this);
     }
 }
Example #2
0
        public void AddItem(string Text, Tooltip t)
        {
            GListItem toAdd = new GListItem(Text, this.m_Count++, this)
            {
                Tooltip = t
            };

            base.m_Children.Add(toAdd);
        }
Example #3
0
 protected internal void OnListItemClick(GListItem who)
 {
     if (this.m_OnClick != null)
     {
         base.SetTag("Clicked", who);
         this.m_OnClick(this);
     }
 }
Example #4
0
 public void AddItem(string Text, Tooltip t)
 {
     GListItem toAdd = new GListItem(Text, this.m_Count++, this) {
         Tooltip = t
     };
     base.m_Children.Add(toAdd);
 }