> > > I am planning to make my winforms implement an interface representing
> > > the data on the forms.
[quoted text clipped - 53 lines]
> And I like having control wherever I can.(I know that is not a good
> selling point)
BindingSource is a Windows forms component. I think there may be a
similar control in Asp.Net though.
You can have control, but the problem is you're re-inventing the
wheel. And your code won't be portable to say WPF.
parez - 06 Mar 2008 21:26 GMT
> > > > I am planning to make my winforms implement an interface representing
> > > > the data on the forms.
[quoted text clipped - 59 lines]
> You can have control, but the problem is you're re-inventing the
> wheel. And your code won't be portable to say WPF.
Hi
I am not longer using the Attributes.. The addressForm class and the
Address class (just an exmpale) will both implement IAddress. I will
use reflection to populate the interface that is passed to my address
class. winform or webform .
Why do you say code will not work in WPF? I mean the code with
attributes. I have not used WPF.