22 lines
399 B
C#
22 lines
399 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace BITKit.UX
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 弹窗输入框
|
||
|
/// </summary>
|
||
|
public interface IUXInputBox
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 显示指定容器
|
||
|
/// </summary>
|
||
|
/// <param name="container"></param>
|
||
|
void Show(object container);
|
||
|
/// <summary>
|
||
|
/// 关闭
|
||
|
/// </summary>
|
||
|
void Close();
|
||
|
}
|
||
|
}
|