Fenster für Bewertung etwas größer öffnen und mehr Platz für Bemerkungsfeld lassen

This commit is contained in:
2026-07-09 16:50:11 +02:00
parent 182423692b
commit a5767bde91

View File

@@ -1757,10 +1757,15 @@ namespace BeWo.View.Detail
{
var control = new RatingEditView();
control.InitView(vm);
var height = this.ActualHeight - 50;
if (height < 600)
{
height = 600;
}
var beWoWindow = new BeWoWindow
{
rootGroupBox = { Header = "Bewertung bearbeiten" },
Height = this.Height,
Height = height,
Width = 1000,
MinWidth = 550,
WindowStartupLocation = WindowStartupLocation.CenterOwner,