fix: import

This commit is contained in:
status102
2025-07-11 10:17:06 +08:00
parent 8c8be278ea
commit 7fb2d0686e
4 changed files with 4 additions and 2 deletions

View File

@@ -23,7 +23,6 @@ using System.Text.Json.Serialization;
using System.Text.Unicode;
using System.Threading;
using System.Threading.Tasks;
using MaaWpfGui.Configuration.Global;
using MaaWpfGui.Configuration.Single;
using MaaWpfGui.Helper;
using ObservableCollections;
@@ -143,7 +142,7 @@ namespace MaaWpfGui.Configuration.Factory
OnPropertyChanged("Root.Configurations", null, null);
};
parsed.Timers.CollectionChanged += OnCollectionChangedFactory<int, Timer>("Root.Timers.");
parsed.Timers.CollectionChanged += OnCollectionChangedFactory<int, Global.Timer>("Root.Timers.");
parsed.VersionUpdate.PropertyChanged += OnPropertyChangedFactory();
parsed.AnnouncementInfo.PropertyChanged += OnPropertyChangedFactory();
parsed.GUI.PropertyChanged += OnPropertyChangedFactory();

View File

@@ -12,6 +12,7 @@
// </copyright>
using System.ComponentModel;
using MaaWpfGui.Configuration.Factory;
namespace MaaWpfGui.Configuration.Global
{

View File

@@ -12,6 +12,7 @@
// </copyright>
using System.ComponentModel;
using MaaWpfGui.Configuration.Factory;
using MaaWpfGui.Helper;
using MaaWpfGui.Models;

View File

@@ -13,6 +13,7 @@
#nullable enable
using System.ComponentModel;
using MaaWpfGui.Configuration.Factory;
namespace MaaWpfGui.Configuration.Global
{