예제 #1
0
파일: Client.cs 프로젝트: Jonah0x90/WiFi
        private void StartCount(int time)
        {
            Timer_Count.Enabled = true;
            int reckon = 1000 * time;

            Timer_Count.Interval = reckon;
            Timer_Count.Start();
        }
예제 #2
0
파일: Client.cs 프로젝트: Jonah0x90/WiFi
 private void stopsd()
 {
     Timer_Count.Stop();
     Timer_Count.Enabled = false;
 }