| 123456789101112131415161718192021222324 |
- /*******************************************************************************
- * Copyright(c) 2014 DongkeSoft All rights reserved. / Confidential
- * 类的信息:
- * 1.程序名称:C_ListBox.cs
- * 2.功能描述:扩展的控件
- * 编辑履历:
- * 作者 日期 版本 修改内容
- * 陈晓野 2014/08/13 1.00 新建
- *******************************************************************************/
- namespace Dongke.IBOSS.PRD.Basics.BaseControls
- {
- public partial class C_ListBox : DKListBox
- {
- #region 构造函数
- public C_ListBox()
- {
- InitializeComponent();
- }
- #endregion
- }
- }
|