DummyControl.cs 693 B

12345678910111213141516171819202122
  1. /*******************************************************************************
  2. * Copyright(c) 2014 DongkeSoft All rights reserved. / Confidential
  3. * 类的信息:
  4. * 1.程序名称:DummyControl.cs
  5. * 2.功能描述:类文件
  6. * 编辑履历:
  7. * 作者 日期 版本 修改内容
  8. * 陈晓野 2014/09/01 1.00 新建
  9. *******************************************************************************/
  10. using System.Windows.Forms;
  11. namespace Dongke.IBOSS.PRD.Basics.DockPanel
  12. {
  13. internal class DummyControl : Control
  14. {
  15. public DummyControl()
  16. {
  17. SetStyle(ControlStyles.Selectable, false);
  18. }
  19. }
  20. }