DeveloperWindow

+ cleane Shortcuts
This commit is contained in:
2026-06-10 15:41:31 +02:00
parent f3db19c4e9
commit 94c3b00c32
29 changed files with 843 additions and 380 deletions

View File

@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BeWo.ViewModel.View.Developer
{
public class DesignDeveloperViewModel : DeveloperViewModel
{
public DesignDeveloperViewModel()
{
KeyboardFocus = "Button";
LogicalFocus = "Button";
}
}
}