Taken with instagram
Technical Blog about C#, .NET, ASP.NET MVC, WPF.Scroll down a bit to start reading, or a bit more to read more about me.
Taken with instagram
Dependency Property-: This Property is been supported by DependencyObject class which is again inherited from DispatcherObject() class. DispatcherObject() is the parent class of the Visual Tree.
The Main purpose of using Dependency Property comes with the data binding when change in one data causes change in other. Dependency Property works perfect in that scenario. WPF has the ability for dependency properties to be data bound to other properties and automatically recomputes themselves when their value changes.
Drawing Visual Class-: This is Inherited from Visual Abstract class,Its a lightweighted class and doesn’t have all functionalities. Its always a good practice to use it when working with applications that doesn’t requires any binding and layout of elements.
With MVC-3 globalize filters can be applied to the whole project. Using these filters we can filter which controller to give access into the web application.
Instead of using Silverlight controls to create graphs and charts . Above link shows a nice demonstration of creating them using MVC web helpers.
Some basic but important features of C-Sharp
Requisitos
- Microsoft Visual Studio 2010
- Conocimientos básicos de Silverlight y patrones de software
Introducción
Existen una cantidad de frameworks que ofrecen el patrón MVVM (Model, View, View Model) ya de una manera “enlatada” (MVVMLight por ejemplo), los cuales podrían ser utilizados de inmediato en tus aplicaciones de línea de negocios, ya sea para Silverlight, WPF o incluso el teléfono de Windows 7.
Estos frameworks básicamente crean la estructura y la plomería interior con el fin de hacer el trabajo pesado para el desarrollador. Estoy de acuerdo en que un desarrollador debería ser capaz de utilizar un framework, pero también ser capaz de “diseccionar” el framework - conocer su funcionamiento interno, de tal manera que no solo esperemos que las cosas funcionen “automágicamente” con el fin ser capaz de entender cómo funcionan.