From a5932bebeffc7e7852de5e45ab7adb3ae9576f86 Mon Sep 17 00:00:00 2001 From: Le Chau Date: Thu, 25 Jun 2020 09:39:05 +0700 Subject: [PATCH] =?UTF-8?q?Set=20thu=E1=BB=99c=20t=C3=ADnh=20c=E1=BB=A7a?= =?UTF-8?q?=20thrStatistics=20th=C3=A0nh=20BackgroundThread?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AIParkingApplication/Statistic.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/AIParkingApplication/Statistic.cs b/AIParkingApplication/Statistic.cs index 11fccfd..2b6aeec 100644 --- a/AIParkingApplication/Statistic.cs +++ b/AIParkingApplication/Statistic.cs @@ -28,6 +28,7 @@ namespace AIParkingApplication { InitializeComponent(); Thread thrStatistics = new Thread(new ThreadStart(GetStatistic)); + thrStatistics.IsBackground = true; thrStatistics.Start(); }