using System.Collections; using System.Collections.Generic; namespace BITKit.UX { /// /// 弹窗输入框 /// public interface IUXInputBox { /// /// 显示指定容器 /// /// void Show(object container); /// /// 关闭 /// void Close(); } }