WizardPageType

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

namespace WindowsFormsApplication3.Enums
{
    public enum WizardPageType
    {
        Start = 0,
        Intermediate = 1,
        Checkout=2,
        Fix = 3
    }
}
原文地址:https://www.cnblogs.com/rosizel/p/3864224.html