Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
462
BindingSource bound to UltraTabcontrol?
posted

Is it possible to bind a BindingSource (which its datasource is a collection of objects) to an UltraTabControl so that changes to the collection add and remove tabs automatically? (one UltraTab per object)  How would I go about doing this? I'd like one of my objects properties to be the Ultratab.Text and a different property to be the ultraTab.Key.

Parents
No Data
Reply
  • 44743
    Verified Answer
    posted

    You can use an UltraTabStrip control and set its DataSource and DataMember to your data source. Then set the TabTextMember property to indicate which member should be used for the taxt of each tab.

Children