示例#1
0
 public Icon IconSent()
 {
     if (m_currentlyShowing != CurrentlyShowing.Sent)
     {
         InitIconIndex();
     }
     m_currentlyShowing = CurrentlyShowing.Sent;
     return(m_iconSent[getNextIconIndex()]);
 }
示例#2
0
 public Icon IconReceived()
 {
     if (m_currentlyShowing != CurrentlyShowing.Received)
     {
         InitIconIndex();
     }
     m_currentlyShowing = CurrentlyShowing.Received;
     return(m_iconReceived[getNextIconIndex()]);
 }
示例#3
0
 public Icon IconSentReceived()
 {
     if (m_currentlyShowing != CurrentlyShowing.SentReceived)
     {
         InitIconIndex();
     }
     m_currentlyShowing = CurrentlyShowing.SentReceived;
     return(m_iconSentReceived[getNextIconIndex()]);
     // TODO return m_iconSentReceived[4];
     // return NetworkNotification.Properties.Resources._02_NetInOut4___Aero;
 }
示例#4
0
 public Icon IconDown()
 {
     m_currentlyShowing = CurrentlyShowing.Down;
     return(m_iconNetDown);
 }
示例#5
0
 public Icon IconNet()
 {
     m_currentlyShowing = CurrentlyShowing.Net;
     return(m_iconNet);
 }