public TabPanel(TabPanelCollection collection, string memberName, string headerText, string content, string url, bool isSelected, string title = "", string onclick = "") { this.oCollection = collection; this.sMemberName = memberName; this.sHeaderText = headerText; this.sContent = content; this.sUrl = url; this.bIsSelected = isSelected; this.sContentTitle = title; this.sOnClick = onclick; }
public TabPanel(TabPanelCollection collection, string memberName, string headerText, string url, bool isSelected, string title = "", string onclick = "") : this(collection, memberName, headerText, string.Empty, url, isSelected, title, onclick) { }
public TabPanel(TabPanelCollection collection, string memberName, string headerText, string url, string title) : this(collection, memberName, headerText, string.Empty, url, false, title, string.Empty) { }