public void OnClickSortContribute(IUIObject obj)
 {
     if (!this.SetSortDelayTime())
     {
         return;
     }
     this.m_eSort           = NewGuildMemberDlg.eSORT.eSORT_CONTRIBUTE;
     this.m_bSortContribute = !this.m_bSortContribute;
     this.RefreshInfo();
 }
 public void OnClickSortConnectTime(IUIObject obj)
 {
     if (!this.SetSortDelayTime())
     {
         return;
     }
     this.m_eSort            = NewGuildMemberDlg.eSORT.eSORT_CONNECTTIME;
     this.m_bSortConnectTime = !this.m_bSortConnectTime;
     this.RefreshInfo();
 }
 public void OnClickSortLevel(IUIObject obj)
 {
     if (!this.SetSortDelayTime())
     {
         return;
     }
     this.m_eSort      = NewGuildMemberDlg.eSORT.eSORT_LEVEL;
     this.m_bSortLevel = !this.m_bSortLevel;
     this.RefreshInfo();
 }