IssueVision Middle Panel

Is it possible to "extract" the IssueList control of the IssueVision app, and include it in other apps
Thanks


Answer this question

IssueVision Middle Panel

  • EricLoos

    it is very simple in operation... the source is all there.
  • mridula.k

    Basically you have to write the databinding code so that you object only cares for datasources that implement the following interfaces:

    IBindingList, IList, ICollection, IEnumerable,  and ITypedList.

    Then you should be able to visually "bind" your "DataSource" and "DataMember"  to any datasource (DataView, DataTable, ArrayList or a "CustomObjectView")

  • vistapolar

    well there is a outlook pane or somethign in the winforms client's controls folder...

    and to be honest I've never messed with databinding directly, never needed to. but it should all be rather simple, being that its all right there.

  • myksdsu

    That is.. ejem.... not true... generic databinding (like the one offered by the System.Windows.Forms.DataGrid) is not for the unexperienced developer.

    Transforming the control in the IssuaVission Middle Panel into a generic databindable objects for any datasource... well, that is not an easy task if you dont know how databinding really works ... (and if you do know, and have experience building controls with generic databinding...  then is work for 3 to 5 days)

  • Zeratore

    Ehm... I tried it, but with no success... ;)
    It seems to be very "bound" to the application.
    The big change I should implement is make the control working with CollectionBase inherited classes as DataSource, instead of DataView and DataRowView.
    Could you help me

    Thanks,
    Alberto - Italy

  • IssueVision Middle Panel