BACnet.Explorer.Core.Plugins.Tabs.DeviceAlarmsTab.Create C# (CSharp) Method

Create() public method

Creates the tab page
public Create ( ObjectInfo deviceInfo ) : Eto.Forms.TabPage
deviceInfo ObjectInfo The device info to create the tab for
return Eto.Forms.TabPage
        public TabPage Create(ObjectInfo deviceInfo)
        {
            var page = new TabPage();
            page.Text = Constants.AlarmsTabText;
            page.Content = new Panel(deviceInfo);
            return page;
        }
DeviceAlarmsTab