1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
enum ConnectionStatus
{
Online,
Offline
}
public class TaClasse
{
ConnectionStatus m_maConnection;
public TaClasse()
{
m_maConnection = ConnectionStatus.Offline;
}
private void toolBtnLine_Click(object sender, EventArgs e)
{
if (m_maConnection == ConnectionStatus.Online)
{
m_maConnection = ConnectionStatus.Offline;
toolBtnLine.Image = Properties.Resources.offline;
}
else
{
m_maConnection = ConnectionStatus.Online;
toolBtnLine.Image = Properties.Resources.online;
}
toolBtnLine.Invalidate();
}
} |
Partager