WizardStepType

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace WindowsFormsApplication3.Enums
{
    public enum WizardStepType
    {
        None = 0,
        Previous = 1, 
        Next = 2, 
        Finished = 3
    }
}
posted on 2014-07-23 23:02  rosizel  阅读(95)  评论(0编辑  收藏  举报