Persist theme choice in settings, fix grid row colors on theme switch, and apply DWM caption styling to the main window and authorization dialog. Co-authored-by: Cursor <cursoragent@cursor.com>
17 lines
377 B
C#
17 lines
377 B
C#
using System;
|
||
using System.Windows.Forms;
|
||
|
||
namespace Электронная_Фармация
|
||
{
|
||
internal static class Program
|
||
{
|
||
[STAThread]
|
||
static void Main()
|
||
{
|
||
Application.EnableVisualStyles();
|
||
Application.SetCompatibleTextRenderingDefault(false);
|
||
Application.Run(new ElectroPharmacy());
|
||
}
|
||
}
|
||
}
|