| |
browse.develop.com
Browse.develop.com is a community that was established to collect and
organize valuable web information. Our technical staff have selected and
indexed information and courses that they feel will help you stay
current on best practices across the SDLC.
|
9 Articles match "Data Binding","Silverlight"
| Related DevelopMentor Courses | MORE | | Guerrilla.NET (US) Training WPF/SL : Develop cutting-edge UIs with Windows Presentation Foundation and Silverlight including coverage of Silverlight 5.0 assuming Silverlight 5.0 MVVM : Learn advanced WPF / Silverlight design patterns and techniques including MVVM (Model-View-ViewModel). Multithreading : Build efficient multithreaded processing using new lightweight concurrent data structures. EF : Decouple your entity model from the data using Plain Old CLR Objects (POCOs). NoSQL : Build insanely fast, data-driven applications with NoSQL, MongoDB, and LINQ. and jQuery. DevelopMentor Courses - Tuesday, March 1, 2011 Guerrilla.NET (UK) Training Build efficient multithreaded processing using new lightweight concurrent data structures. Create declarative services using workflow that can be deployed as simple text files Decouple your entity model from the data using Plain Old CLR Objects (POCOs). Develop network services with Windows Communication Foundation Develop cutting-edge UIs with Silverlight 4.0 Workflow 4, ASP.NET MVC and Silverlight. How do I develop cutting-edge UIs with Silverlight 4.0? Along the way we will look at how LINQ can be used to query and manipulate this data. couldn't? DevelopMentor Courses - Tuesday, March 1, 2011 Essential Silverlight 5 Training Microsoft Silverlight 5 packages a scaled-down.NET runtime engine and library into a cross-platform, cross-browser plug-in, enabling you to create Rich Internet Applications (RIAs) and compelling Line of Business (LoB) applications using familiar tools and languages. NOTE: This class runs using the latest Release Candidate build of Silverlight 5. It is applicable to all Silverlight developers, including those targeting Silverlight 4 (our Silverlight 4 course is still available for delivery at your site). ? How do I apply the M-V-VM pattern to Silverlight? DevelopMentor Courses - Wednesday, February 22, 2012 |
16 Articles match "Data Binding","Silverlight"
| The Latest from DevelopMentor | MORE | | How to get started with Knockout.js Once you get into doing more client side JavaScript code with business applications and REST services you are going to run into the question of how to construct the client side HTML required to show the data to the users. this become somewhat more like Silverlight/WPF. Not that it is exactly the same but it uses the same MVVM pattern and data binding that Silverlight developers are used to. Personally I really like the MVVM and binding style Knockout.js you embed data binding expressions in your HTML. They indicate data binding syntax. The Problem Solver - Monday, February 6, 2012 How to get started with Knockout.js Once you get into doing more client side JavaScript code with business applications and REST services you are going to run into the question of how to construct the client side HTML required to show the data to the users. this become somewhat more like Silverlight/WPF. Not that it is exactly the same but it uses the same MVVM pattern and data binding that Silverlight developers are used to. Personally I really like the MVVM and binding style Knockout.js you embed data binding expressions in your HTML. They indicate data binding syntax. The Problem Solver - Monday, February 6, 2012 Simple MVVM Toolkit versus MVVM Light Toolkit Both Simple MVVM and MVVM Light toolkits support WPF, Silverlight and Windows Phone clients. In addition there is a Getting Started topic which correlates to a screencast and provides step-by-step instructions for creating a Silverlight app using the toolkit. One is an assortment of small samples, each illustrating a particular feature or aspect of the toolkit: Property Association, Enums, Async, Dependency Injection, Messaging, Navigation, and RIA Services, as well as Getting Started samples for Silverlight, WPF and Windows Phone. Platforms. Support. Usability. That’s it. Tony and Zuzana's World - Saturday, April 23, 2011 | -
| The Best from DevelopMentor | MORE | - Type-Safe Two-Way Data Binding with INotifyPropertyChanged
Anyone who’s developed a UI application using Windows Forms, WPF or Silverlight is probably aware that you have to implement the INotifyPropertyChanged interface to get two-way data binding between UI elements and an underlying data source. That way, the compiler will check that the property name matches a valid property on the class , which will prevent your data bindings from breaking should you change a property name on your class and forget to update the property changed argument. And you want to bind it to a XAML page that has two textboxes. Tony and Zuzana's World - Tuesday, January 25, 2011 - Using Model – View – ViewModel with Silverlight
have found it extremely easy to use when developing very different applications and have used the design pattern recently in both ASP.NET, WPF and Silverlight applications. Even thought the UI technology used doesn't change the basic MVVM pattern there are some subtle differences, like not easily being able to use ICommand in Silverlight, so I decided to create a small Silverlight sample. The basic structure goes like this: The user interacts with a View, implemented as a Silverlight user control. The View is data bound to a ViewModel. 11: {. 13: set. The Problem Solver - Tuesday, April 7, 2009 - Using dynamic objects in Silverlight 4
Note: This blog post is written using Silverlight 4.0 RC 1 One of the cool new features in Silverlight 4 is the ability to data bind to indexed properties. This means that even if you don’t know at design time what properties you data object has you can still data bind to them. The syntax is very similar to a normal data binding, only in this case you need to use the [key] syntax instead. Creating the class to data bind to is simple. private Dictionary _data = new Dictionary (); public object this [ string key]. {. The Problem Solver - Monday, April 12, 2010 - Type-Safe Two-Way Data Binding with INotifyPropertyChanged
Anyone who’s developed a UI application using Windows Forms, WPF or Silverlight is probably aware that you have to implement the INotifyPropertyChanged interface to get two-way data binding between UI elements and an underlying data source. That way, the compiler will check that the property name matches a valid property on the class , which will prevent your data bindings from breaking should you change a property name on your class and forget to update the property changed argument. And you want to bind it to a XAML page that has two textboxes. Tony and Zuzana's World - Tuesday, January 25, 2011 - Book review: Silverlight 4 in Action
Some weeks ago I received a review copy of Silverlight in Action by Pete Brown. Reviewing this book took some time as it weighs in at a hefty 798 pages, who ever said that Silverlight was a small products? That is a lot of material but then the book doesn't assume any prior knowledge of Silverlight at all. The first part, consisting of 10 chapters, is titled "Introducing Silverlight" As the name suggests this covers the basics of Silverlight development. All in all I would recommend getting this book if you are serious about Silverlight 4 development! The Problem Solver - Wednesday, September 29, 2010 - Simple MVVM Toolkit Improvements: Documentation, Features, Sample Apps
I’ve released a new version of my Simple MVVM Toolkit for Silverlight that has improved documentation, a bunch of new features and additional sample applications. My toolkit is also targeted to Silverlight applications (although I plan to add Windows Phone support shortly), because Microsoft has positioned Silverlight as it primary platform for business application development. Strongly typed data binding with lambda expressions. Technical MVVM SilverlightAnd many of those other toolkits are woefully lacking in the way of documentation and code samples. Tony and Zuzana's World - Sunday, January 23, 2011 - How to get started with Knockout.js
Once you get into doing more client side JavaScript code with business applications and REST services you are going to run into the question of how to construct the client side HTML required to show the data to the users. this become somewhat more like Silverlight/WPF. Not that it is exactly the same but it uses the same MVVM pattern and data binding that Silverlight developers are used to. Personally I really like the MVVM and binding style Knockout.js you embed data binding expressions in your HTML. They indicate data binding syntax. The Problem Solver - Monday, February 6, 2012 %>
| | |