This commit is contained in:
Stefan Hutter
2025-02-16 10:17:32 +01:00
parent 0969e308a7
commit d0d96c0732
61 changed files with 209 additions and 47 deletions

View File

@@ -487,5 +487,26 @@ namespace OnDoc.DocMgmt
this.Width = groupBox2.Width + 10;
return;
}
private void SerienbriefBearbeitung_ResizeEnd(object sender, EventArgs e)
{
}
private void SerienbriefBearbeitung_Resize(object sender, EventArgs e)
{
if (this.docPreview1.Visible == false)
{
this.groupBox2.Dock = DockStyle.Fill;
this.sfdatagridDokspezifisch.Width = groupBox2.Width - 10;
this.sfdatagridstandard.Width = groupBox2.Width - 10;
this.sfdatagridUsed.Width = groupBox2.Width - 10;
}
else
{
this.groupBox2.Dock = DockStyle.Left;
}
}
}
}