mirror of
https://github.com/aelurum/AssetStudio.git
synced 2025-07-14 02:54:16 -04:00
separate code into library
misc
This commit is contained in:
17
AssetStudioGUI/Components/GOHierarchy.cs
Normal file
17
AssetStudioGUI/Components/GOHierarchy.cs
Normal file
@ -0,0 +1,17 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user