namespace CSFrameworkV5.Core { /// /// 支持打印功能的接口 /// public interface IPrintableForm { /// /// 按钮列表 /// /// IButtonInfo[] GetPrintableButtons(); /// /// 打开打印窗体 /// /// void DoPrint(IButtonInfo button); } }