remove timers

This commit is contained in:
Marterich
2025-03-19 23:51:26 +01:00
parent c9aca94968
commit 7b63feab82
2 changed files with 12 additions and 12 deletions

View File

@ -10,13 +10,13 @@ function Invoke-WPFUIApps {
switch ($TargetGridName) {
"appspanel" {
$dockPanel = Initialize-InstallAppsMainElement -TargetGridName $TargetGridName
log_time_taken "Setup DockPanel for Apps"
$null = Initialize-InstallHeader -TargetElement $dockPanel
log_time_taken "Setup Header for Apps"
$sync.ItemsControl = Initialize-InstallAppArea -TargetElement $dockPanel
log_time_taken "Setup ItemsControl for Apps"
Initialize-InstallCategoryAppList -TargetElement $sync.ItemsControl -Apps $Apps
log_time_taken "UI Initialized"
}
default {
Write-Output "$TargetGridName not yet implemented"