mirror of
https://github.com/Dongyifengs/AssetStudio-Genshin-MoYi.git
synced 2025-05-06 11:29:18 +08:00
18 lines
368 B
C#
18 lines
368 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
namespace AssetStudioGUI
|
|
{
|
|
internal class GOHierarchy : TreeView
|
|
{
|
|
protected override void WndProc(ref Message m)
|
|
{
|
|
// Filter WM_LBUTTONDBLCLK
|
|
if (m.Msg != 0x203) base.WndProc(ref m);
|
|
}
|
|
}
|
|
}
|