27 lines
427 B
C#
27 lines
427 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Thousandto.Code.Logic
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 消息对话框返回的结果
|
|||
|
/// </summary>
|
|||
|
public enum MsgBoxResultCode
|
|||
|
{
|
|||
|
None,
|
|||
|
Button1,
|
|||
|
Button2
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 对话框的选中状态
|
|||
|
/// </summary>
|
|||
|
public enum MsgBoxIsSelect
|
|||
|
{
|
|||
|
Selected,
|
|||
|
UnSelected
|
|||
|
}
|
|||
|
}
|