| |
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.
|
12 Articles match "Binding","Silverlight"
| Related DevelopMentor Courses | MORE | | Silverlight 5 release Silverlight 5 got released this weekend and can be downloaded here: [link]. from the Silverlight 5 download package). Ancestor RelativeSource Binding. Binding on Style Setters. Silverlight 5 performance improvements. Visual Studio Team Test support.NET SilverlightSummary of the features. Improved media support. Low Latency Audio Playback. Variable Speed Playback. W Decode of H.264 media. DRM Key Rotation/LiveTV Playback. Application-Restricted Media. Improved Text support. Text Tracking & Leading. Linked Text Containers. Postscript vector printing. DevelopMentor Courses - Monday, December 12, 2011 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). iOS : Build multi-touch enabled applications on platforms such as WPF, Silverlight, and Apple's iPhone / iPad. Learn to write code using new.NET class libraries like LINQ and Silverlight. assuming Silverlight 5.0 Main Topic Day 1 Introduction to WPF and Silverlight (version 4.0 and 5.0 DevelopMentor Courses - Tuesday, March 1, 2011 Guerrilla.NET (UK) Training Develop network services with Windows Communication Foundation Develop cutting-edge UIs with Silverlight 4.0 Use data binding to create rich data driven Silverlight applications Use powerful new security models with Windows Identity Foundation Debug.NET application beyond using Visual Studio breakpoints Come and learn to build robust.NET applications! Workflow 4, ASP.NET MVC and Silverlight. How do I develop cutting-edge UIs with Silverlight 4.0? Silverlight, Data and MVVM Moving data between the UI and underlying objects can be a laborious task. DevelopMentor Courses - Tuesday, March 1, 2011 |
40 Articles match "Binding","Silverlight"
| The Latest from DevelopMentor | MORE | | How to get started with Knockout.js 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. Notice the data-bind attributes in the following HTML snippet. They indicate data binding syntax. The first two data bind the value property of the control to the firstName and lastName from the ViewModel. click( function () {. $.getJSON( Using templates. The Problem Solver - Monday, February 6, 2012 How to get started with Knockout.js 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. Notice the data-bind attributes in the following HTML snippet. They indicate data binding syntax. The first two data bind the value property of the control to the firstName and lastName from the ViewModel. click( function () {. $.getJSON( Using templates. The Problem Solver - Monday, February 6, 2012 Silverlight 5 release Silverlight 5 got released this weekend and can be downloaded here: [link]. from the Silverlight 5 download package). Ancestor RelativeSource Binding. Binding on Style Setters. Silverlight 5 performance improvements. Visual Studio Team Test support.NET SilverlightSummary of the features. Improved media support. Low Latency Audio Playback. Variable Speed Playback. W Decode of H.264 media. DRM Key Rotation/LiveTV Playback. Application-Restricted Media. Improved Text support. Text Tracking & Leading. Linked Text Containers. Postscript vector printing. DevelopMentor Courses - Monday, December 12, 2011 | -
| The Best from DevelopMentor | MORE | - 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. All controls use data binding to get to their values. The Problem Solver - Tuesday, April 7, 2009 - Easier Async for Silverlight Apps using MVVM
WPF and Silverlight have Dispatcher.CheckAccess / Dispatcher.BeginInvoke. That way, you won’t get an error when the binding handles the PropertyChanged event. Technical MVVM SilverlightIt makes sense to execute long-running tasks on a background thread, in order to keep the UI responsive by not tying up the main thread. However, as is the case with other UI frameworks such as Windows Forms or WPF, you should not touch UI elements from worker threads. There are various mechanisms available for you to marshal a call from a worker thread back to the main thread. Tony and Zuzana's World - Saturday, January 29, 2011 - Paging with the Silverlight RIA services DomainDataSource
Using the declarative DomainDataSource that is part of the upcoming Silverlight 3 RIA services makes it quite easy to work with data. xmlns:x ="[link] > < riaControls:DomainDataSource x:Name ="CustomerDataSource" LoadMethodName ="LoadCustomers" LoadSize ="40" > < dataControls:DataPager Source ="{Binding Data, ElementName=CustomerDataSource}" PageSize ="20" /> The DataPager control is quite easy to use as well. Tags: NET VB DevCenter Silverlight Data Access ASP.NET.Adding paging. Using progressive loading. The Problem Solver - Monday, April 27, 2009 - 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. null ). Body).Member.Name; Tony and Zuzana's World - Tuesday, January 25, 2011 - 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. Tags: NET Silverlight ASP.NET VS2010 get; set; }. public Person(). {. get. {. data.ContainsKey(key)). set. {. The Problem Solver - Monday, April 12, 2010 - Commands versus Event Triggers in MVVM
For several reasons I tend to favor event triggers over commands in most scenarios, especially for Silverlight applications. ICommand exposes a CanExecuteChanged event which when fired causes a binding to check the CanExecute property. Unfortunately Silverlight requires you to fire the CanExecuteChanged event manually, which is why implementations of ICommand (such as the DelegateCommand in Simple MVVM Toolkit) also expose a public RaiseCanExecute method. Technical MVVM SilverlightAnd it can only be used to respond to the button’s Click event. Enjoy, Tony. Tony and Zuzana's World - Friday, July 22, 2011 - Using Silverlight to Access WIF secured WCF Services
Disclaimer: At the time of this writing, the current version of Silverlight is v3 and WIF is in beta 2. Another technology that comes up very often is Silverlight – and especially the “story” of Silverlight and WCF/WIF. When thinking about Silverlight and back-end security in general – there are two fundamental scenarios – short of really good names – I call them “passive” and “active”. An example would be that the user first authenticates with the web application and then starts the Silverlight app from there. Hopefully this will be a non-issue soon. Passive. www.leastprivilege.com - Wednesday, October 28, 2009 %>
| | |