Gurpenator.GurpenatorTable.GurpenatorTable C# (CSharp) Метод

GurpenatorTable() публичный Метод

public GurpenatorTable ( CharacterSheet characterSheet, TraitList layout ) : System
characterSheet CharacterSheet
layout TraitList
Результат System
        public GurpenatorTable(CharacterSheet characterSheet, TraitList layout)
        {
            this.characterSheet = characterSheet;
            this.layout = layout;
            table = new TableLayoutPanel();
            table.Dock = DockStyle.Fill;
            table.AutoSizeMode = AutoSizeMode.GrowAndShrink;
            table.AutoSize = true;
            rootControl = maybeContainInGroupBox(layout.title, table, characterSheet);

            refreshRows();
        }