mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-12 13:00:32 +00:00
c38affcded
* All renderdoc code up to this point was written by me, history is available by request
14 lines
245 B
C#
14 lines
245 B
C#
using System;
|
|
using System.Windows.Forms;
|
|
|
|
namespace WeifenLuo.WinFormsUI.Docking
|
|
{
|
|
internal class DummyControl : Control
|
|
{
|
|
public DummyControl()
|
|
{
|
|
SetStyle(ControlStyles.Selectable, false);
|
|
}
|
|
}
|
|
}
|