duheng
2024-10-09 e39f5a762c3401ae38b0c064b10bd4c30effb6e4
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