using System; using System.Collections.Generic; using System.Text; namespace Thousandto.Code.Logic { /// /// 消息对话框返回的结果 /// public enum MsgBoxResultCode { None, Button1, Button2 } /// /// 对话框的选中状态 /// public enum MsgBoxIsSelect { Selected, UnSelected } }