DummyControl.cs
上传用户:szlfmled
上传日期:2020-11-22
资源大小:978k
文件大小:0k
源码类别:

C#编程

开发平台:

C#

  1. using System;
  2. using System.Windows.Forms;
  3. namespace WeifenLuo.WinFormsUI.Docking
  4. {
  5. internal class DummyControl : Control
  6. {
  7. public DummyControl()
  8. {
  9. SetStyle(ControlStyles.Selectable, false);
  10. }
  11. }
  12. }