DummyControl.cs
上传用户:szlfmled
上传日期:2020-11-22
资源大小:978k
文件大小:0k
- using System;
- using System.Windows.Forms;
- namespace WeifenLuo.WinFormsUI.Docking
- {
- internal class DummyControl : Control
- {
- public DummyControl()
- {
- SetStyle(ControlStyles.Selectable, false);
- }
- }
- }