AnimatGuiCtrls.Controls.BandPanel.BandPanel C# (CSharp) Method

BandPanel() public method

public BandPanel ( string caption, ContentPanel content, BandTagInfo bti ) : System
caption string
content ContentPanel
bti BandTagInfo
return System
        public BandPanel(string caption, ContentPanel content, BandTagInfo bti)
        {
            BandButton bandButton=new BandButton(caption, bti);
                Controls.Add(bandButton);
                Controls.Add(content);
                m_Content = content;
        }
BandPanel