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
750
Port to Infragistics
posted

I would like to port my application to completely use the infragistic controls....here is "recommended" way to change a System.Windows.Forms.TabControl to use UltraTabControl

or change System.Windows.Forms.Button to be UltraButton

etc....

What's the best approach?....recreating all the controls would just kill me.

 thanks

 Gene

  • 17259
    Offline posted

    You can replace every place written System.Windows.Forms.Button to Infragistics.UltraWinEditors.UltraButton, but maybe your designer had set some properties that MS has and Infragistics doesn't (Usually the opposite is true), so you'll still have some work to do.

    I think the best approach is to create a CustomControl that inherits MS's button or Infragistics's button. If you do that, you have to change your code in much less places if you decide to change the button type.