ListView 성능 개선

This commit is contained in:
2018-10-11 17:27:45 +09:00
parent 1cd307b45a
commit 6ca9067be0
2 changed files with 54 additions and 53 deletions

View File

@@ -14,16 +14,16 @@ namespace NewsCrawler
[STAThread]
static void Main()
{
//try
//{
try
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new NewsForm());
//}
//catch(Exception ex)
//{
// Console.WriteLine(ex.Message + Environment.NewLine + ex.StackTrace);
//}
}
catch (Exception ex)
{
Console.WriteLine(ex.Message + Environment.NewLine + ex.StackTrace);
}
}
}
}