mirror of
https://github.com/dkmstr/openuds.git
synced 2024-12-22 13:34:04 +03:00
21 lines
416 B
C#
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());
|
|
}
|
|
|
|
}
|
|
}
|