1
0
mirror of https://github.com/dkmstr/openuds.git synced 2024-12-22 13:34:04 +03:00
openuds/udsService/udsgui/gui.cs
2012-07-19 23:47:54 +00:00

21 lines
416 B
C#

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());
}
}
}