Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/AssemblyResultPerSectionView.Designer.cs =================================================================== diff -u -r9bf0fc986826a6ad2e2a812e0f502c567c544c59 -rc86784582a2554ad186869e541c928d3293191a3 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/AssemblyResultPerSectionView.Designer.cs (.../AssemblyResultPerSectionView.Designer.cs) (revision 9bf0fc986826a6ad2e2a812e0f502c567c544c59) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/AssemblyResultPerSectionView.Designer.cs (.../AssemblyResultPerSectionView.Designer.cs) (revision c86784582a2554ad186869e541c928d3293191a3) @@ -96,6 +96,7 @@ // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.AutoScrollMinSize = new System.Drawing.Size(300, 250); this.Controls.Add(this.dataGridViewControl); this.Controls.Add(this.buttonGroupBox); this.Name = "AssemblyResultPerSectionView"; Index: Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/AssemblyResultPerSectionViewTest.cs =================================================================== diff -u -r374efe50d0e77c3cb586d5990e296b41fea97e40 -rc86784582a2554ad186869e541c928d3293191a3 --- Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/AssemblyResultPerSectionViewTest.cs (.../AssemblyResultPerSectionViewTest.cs) (revision 374efe50d0e77c3cb586d5990e296b41fea97e40) +++ Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/AssemblyResultPerSectionViewTest.cs (.../AssemblyResultPerSectionViewTest.cs) (revision c86784582a2554ad186869e541c928d3293191a3) @@ -21,6 +21,7 @@ using System; using System.Collections.Generic; +using System.Drawing; using System.Windows.Forms; using Core.Common.Controls.DataGrid; using Core.Common.Controls.Views; @@ -133,6 +134,7 @@ Assert.IsInstanceOf(view); Assert.IsInstanceOf(view); Assert.IsNull(view.Data); + Assert.AreEqual(new Size(300, 250), view.AutoScrollMinSize); Assert.AreSame(assessmentSection, view.AssessmentSection); } }