mirror of
https://github.com/vrcx-team/VRCX.git
synced 2026-04-06 00:32:02 +02:00
20 lines
421 B
C#
20 lines
421 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.InteropServices;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace VRCX
|
|
{
|
|
public class WinformBase : Form
|
|
{
|
|
protected override void OnHandleCreated(EventArgs e)
|
|
{
|
|
WinformThemer.SetThemeToGlobal(this);
|
|
base.OnHandleCreated(e);
|
|
}
|
|
}
|
|
}
|