原材料入库

This commit is contained in:
2026-05-15 11:34:12 +08:00
parent f5ba828eff
commit 70dced7d2c
1700 changed files with 24156 additions and 33 deletions

View File

@@ -101,7 +101,10 @@ namespace YY.Admin.Views
if (e.OriginalSource is Button { Tag: SkinType skinType })
{
var vm = DataContext as MainWindowViewModel;
vm?.AppSettingsViewModel?.SkinType = skinType;
if (vm?.AppSettingsViewModel != null)
{
vm.AppSettingsViewModel.SkinType = skinType;
}
}
}
}