lixiaojun
2024-07-25 8b2f98400842e022aefd5f2f935ca62239a75228
WinFrmUI/Yw.WinFrmUI.Core/08-wizard/WizardManager.cs
@@ -5,6 +5,14 @@
    /// </summary>
    public class WizardManager<T> : IWizardManager<T> where T : class, new()
    {
        /// <summary>
        ///
        /// </summary>
        public WizardManager(T t)
        {
            _vm = t;
        }
        #region 事件
@@ -65,7 +73,7 @@
        /// <summary>
        /// vm对象
        /// </summary>
        protected readonly T _vm = new();
        protected readonly T _vm = null;
        #endregion