18 lines
333 B
C#
18 lines
333 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
namespace CommonLib.utils
|
|
{
|
|
public interface IForm
|
|
{
|
|
/// <summary>
|
|
/// 加载窗体
|
|
/// </summary>
|
|
Form SubForm { get; set; }
|
|
//string ReturnKey { get; set; }
|
|
}
|
|
}
|