mirror of
https://github.com/dkmstr/openuds.git
synced 2024-12-23 17:34:17 +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());
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
}
|