public void AdjustWidthToSize_should_throw_if_index_outside_table_columns_count()
        {
            var table = new TableLayoutPanel
            {
                ColumnCount = 3
            };

            ((Action)(() => table.AdjustWidthToSize(-1, Array.Empty <Control>()))).Should().Throw <ArgumentOutOfRangeException>()
            .WithMessage("Column index must be within [0, 2] range\nParameter name: columnIndex\nActual value was -1.");
            ((Action)(() => table.AdjustWidthToSize(3, Array.Empty <Control>()))).Should().Throw <ArgumentOutOfRangeException>()
            .WithMessage("Column index must be within [0, 2] range\nParameter name: columnIndex\nActual value was 3.");
        }
        public void AdjustWidthToSize_should_set_width_to_largest_value()
        {
            var table = new TableLayoutPanel
            {
                ColumnCount = 3
            };

            table.ColumnStyles.Add(new ColumnStyle());
            table.ColumnStyles.Add(new ColumnStyle());
            table.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 100F));
            table.ColumnStyles[0].SizeType = SizeType.AutoSize;

            table.AdjustWidthToSize(0, new Label {
                Width = 3, Margin = new Padding(3)
            },
                                    new TextBox {
                Width = 6, Margin = new Padding(3)
            },
                                    new Label {
                Width = 9, Margin = new Padding(3)
            },
                                    new TextBox {
                Width = 10, Margin = new Padding(3)
            },
                                    new CheckBox {
                Width = 3, Margin = new Padding(3)
            });

            table.ColumnStyles[0].SizeType.Should().Be(SizeType.Absolute);
            table.ColumnStyles[0].Width.Should().Be(16f);
        }
        public void AdjustWidthToSize_should_throw_if_no_widths_given()
        {
            var table = new TableLayoutPanel
            {
                ColumnCount = 3
            };

            ((Action)(() => table.AdjustWidthToSize(0, null))).Should().Throw <ArgumentNullException>();
        }
        public void AdjustWidthToSize_should_throw_if_no_widths_given1()
        {
            var table = new TableLayoutPanel
            {
                ColumnCount = 3
            };

            ((Action)(() => table.AdjustWidthToSize(0, Array.Empty <Control>()))).Should().Throw <ArgumentException>()
            .WithMessage("At least one control is required\nParameter name: controls");
        }
示例#5
0
        public void AdjustWidthToSize_should_set_width_to_largest_value()
        {
            var table = new TableLayoutPanel
            {
                ColumnCount = 3
            };

            table.ColumnStyles.Add(new ColumnStyle());
            table.ColumnStyles.Add(new ColumnStyle());
            table.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 100F));
            table.ColumnStyles[0].SizeType = SizeType.AutoSize;

            table.AdjustWidthToSize(0, 3f, 6f, 1f, 10f, 2f);

            table.ColumnStyles[0].SizeType.Should().Be(SizeType.Absolute);
            table.ColumnStyles[0].Width.Should().Be(10f);
        }