1
0
mirror of https://github.com/dkmstr/openuds.git synced 2024-12-23 17:34:17 +03:00
openuds/udsService/udsgui/gui.cs

21 lines
416 B
C#
Raw Normal View History

2012-07-20 03:47:54 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace uds.gui
{
public class gui
{
public static void ShowConfig()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new forms.Config());
}
}
}