BACnet.Explorer.Core.Plugins.Tabs.BinaryOutputInfoTab.Create C# (CSharp) Méthode

Create() public méthode

Creates the tab page
public Create ( ObjectInfo objectInfo ) : Eto.Forms.TabPage
objectInfo ObjectInfo The object info to create the tab for
Résultat Eto.Forms.TabPage
        public TabPage Create(ObjectInfo objectInfo)
        {
            var page = new TabPage();
            page.Text = Constants.InfoTabText;
            page.Content = new Panel(objectInfo);
            return page;
        }
BinaryOutputInfoTab