vote up 1 vote down star

Has anyone created a control architecture using the taligent programming model as follows?

http://www.wildcrest.com/Potel/Portfolio/mvp.pdf

The question is how do you implement or map the IInteractor concept (Page 9) to a .net interface? Currently the guess is to use the IInputElement interface as a the event source for all UI input controls.

If anyone has already implemented the taligent pattern in .net I would like to know if it is applies to both Silverlight and WPF? If yes does it apply to the union of their interfaces.

Finally this represents the unified fractal abstract architecture and can displace PresentationFramework.dll. If you see this applies as a control architecture please comment.

flag
1  
A hint - using meaningless terms like "unified fractal abstract architecture" is not going to win you many friends here. – Neil Butterworth Apr 1 at 21:27
Well let me help you understand the concept it's a abstract (meaning written using interfaces) unified meaning the interfaces are common across all devleopment platforms (siliverlight, wpf, mobile) and finally fractal based meaning it's the same pattern on all levels or true composition. Understand? – Fire Garden Apr 1 at 21:35
1  
That's not any definition of the word "fractal" i've ever read. In fact, just the opposite. Fractal comes from the latin Fractus, meaning Fractured or broken. So i'd avoid the condescending tone. – Mystere Man Apr 1 at 22:32

2 Answers

vote up 0 vote down

The article How to: Implement the Model-View-Presenter Pattern of the MSDN patterns & practices section seams to be what you are looking for...

link|flag
Thank you for the comment however this does not address a number of interfaces in the taligent pattern such as ISelection, ICommandOn<> and IInteractor. Basically no one is doing this right now and it will displace PresentationFramework.dll (puke layer) leaving PresentationCore.dll or System.windows – Fire Garden Apr 1 at 21:37
vote up 0 vote down

That depends on what you mean by ".net". The term covers many kinds of applications. Web apps, Web Services, Windows Forms apps, WPF apps, etc...

MVP is used a lot in ASP.NET Web apps. See:

http://msdn.microsoft.com/en-us/magazine/cc188690.aspx

link|flag
You don't get it. A unified architecture would compile to all those – Fire Garden Apr 4 at 18:24
Not really. There is an inherant difference between a stateful and stateless architecture, ala web vs GUI. It would be quite difficult, and likely highly inefficient to try and unify them. – Mystere Man Apr 4 at 21:34
Actually web and gui are converging. You just dont see it man. Sorry. – Fire Garden Apr 5 at 12:58
Of course they are converging. But that doesn't mean they can be treated the same from a programming perspective. They are fundamentally different backend concepts, even if you treat them the same on the front-end. – Mystere Man Apr 5 at 16:24
No they are not. You are confusing REST with RPC – Fire Garden Apr 6 at 18:32

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.