using System.Windows.Controls; using XFEToolBox.ViewModel.Pages; namespace XFEToolBox.Views.Pages; /// /// DownloadPage.xaml 的交互逻辑 /// public partial class DownloadPage : Page { public static DownloadPage? Current { get; set; } = new(); public DownloadPageViewModel ViewModel { get; set; } public DownloadPage() { Current = this; DataContext = ViewModel = new(this); InitializeComponent(); } }