| 123456789101112131415161718192021222324 |
-
- using System;
- using System.Collections.Generic;
- using Dongke.WinForm.Utilities;
- namespace Dongke.WinForm.Controls
- {
- /// <summary>
- /// 单实例窗体
- /// </summary>
- public partial class FormSingle : FormBase, IFormSingle
- {
- #region 构造函数
- /// <summary>
- /// 单实例窗体
- /// </summary>
- protected FormSingle()
- {
- InitializeComponent();
- }
- #endregion
- }
- }
|