WizardButtonState

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

namespace WindowsFormsApplication3.Enums
{
    public enum WizardButtonState
    {
        Enabled = 1,
        Visible = 2
    }
}
原文地址:https://www.cnblogs.com/rosizel/p/3864220.html