| |
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 "Silverlight","WPF"
| Related DevelopMentor Courses | MORE | | Simple MVVM Toolkit for Silverlight 5.0, Windows Phone 7.1 I’ve just upgraded my Simple MVVM Toolki t to support Silverlight 5.0 Before you run the installer, however, you should install the prerequisites , which now include Silverlight 5 Tools and Toolkit , Expression Blend Preview for Silverlight 5 (this will be replaced by the Blend 5 SDK when it comes out), and the Windows Phone SDK 7.1. You can still use the toolkit to develop MVVM apps for Silverlight 4 if you wish, and the Visual Studio project templates include versions for both Silverlight versions – 4 and 5. and Windows Phone 7.1 ! Enjoy DevelopMentor Courses - Friday, March 2, 2012 Screening C# Candidates: Let’s Play 20 Questions! For example, someone might be called upon to build a WPF app retrieving data from a WCF service that queries a SQL database using Entity Framework with Ninject for dependency injection and MOQ for unit testing. Neither do the questions touch on any of the “pillars” of the.NET Framework API, such as data access (Entity Framework), web services (WCF), or presentation platforms (WPF, SL, ASP.NET MVC). Over the past year I was involved in the process of interviewing candidates for both mid and senior level developer positions. This is the purpose of the technical phone screen. DevelopMentor Courses - Tuesday, February 28, 2012 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 dynamic typing from C# 4.0, and jQuery. and jQuery. and 5.0 DevelopMentor Courses - Tuesday, March 1, 2011 |
51 Articles match "Silverlight","WPF"
| The Latest from DevelopMentor | MORE | | Simple MVVM Toolkit for Silverlight 5.0, Windows Phone 7.1 I’ve just upgraded my Simple MVVM Toolki t to support Silverlight 5.0 Before you run the installer, however, you should install the prerequisites , which now include Silverlight 5 Tools and Toolkit , Expression Blend Preview for Silverlight 5 (this will be replaced by the Blend 5 SDK when it comes out), and the Windows Phone SDK 7.1. You can still use the toolkit to develop MVVM apps for Silverlight 4 if you wish, and the Visual Studio project templates include versions for both Silverlight versions – 4 and 5. and Windows Phone 7.1 ! Enjoy DevelopMentor Courses - Friday, March 2, 2012 Screening C# Candidates: Let’s Play 20 Questions! For example, someone might be called upon to build a WPF app retrieving data from a WCF service that queries a SQL database using Entity Framework with Ninject for dependency injection and MOQ for unit testing. Neither do the questions touch on any of the “pillars” of the.NET Framework API, such as data access (Entity Framework), web services (WCF), or presentation platforms (WPF, SL, ASP.NET MVC). Over the past year I was involved in the process of interviewing candidates for both mid and senior level developer positions. This is the purpose of the technical phone screen. DevelopMentor Courses - Tuesday, February 28, 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. 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. Using jQuery Assuming most people are going to be using jQuery on the client you might start with some jQuery code to generate HTML. click( function () {. $.getJSON( Using templates. The Problem Solver - Monday, February 6, 2012 | -
| 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. Josh Smith did an excellent screen cast for Pixel8 on using MVVM with WPF, you can find it here. 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. Tags: NET DevCenter WPF Silverlight 11: {. 13: set. 14: {. The Problem Solver - Tuesday, April 7, 2009 - WPF MVVM Helper Library (WPF + MVVM = testability)
There's been a lot of talk about the Model-View-ViewModel pattern recently and it's usage around the WPF and Silverlight technology stack. When teaching WPF, I always introduce students to MVVM as part of the Essential WPF class, it's an incredibly useful pattern that really separates the UI from the code behind behavior. It's evolution owes a lot to various blog posts, WPF Disciples, and other WPF leaders; I certainly didn't invent anything radically new but borrowed heavily from all kinds of places as I built various classes I needed for my own work. - Easier Async for Silverlight Apps using MVVM
However, as is the case with other UI frameworks such as Windows Forms or WPF, you should not touch UI elements from worker threads. WPF and Silverlight have Dispatcher.CheckAccess / Dispatcher.BeginInvoke. 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. This has to do with how Windows apps process messages, which are always handled on the thread that created the visual element. Windows Forms has the Control.InvokeRequired / Control.BeginInvoke API. Tony and Zuzana's World - Saturday, January 29, 2011 - Links to some MVVM resources
While working on my slides for tomorrow’s MVVM talk I compiled a short list of useful resources for people interested in getting started with MVVM and Sliverlight/WPF: Introduction. Tags: C# Silverlight WPF http :// openlightgroup.net/Blog/tabid/58/EntryId/84/Silverlight-MVVM-The-Revolution-Has-Begun.aspx. link] msdn.microsoft.com/en-us/magazine/dd458800.aspx. link] www.nikhilk.net/Why-ViewModel.aspx. http :// jmorrill.hjtcentral.com/Home/tabid/428/EntryId/432/MVVM-for-Tarded-Folks-Like-Me-or-MVVM-and-What-it-Means-to-Me.aspx. Advanced. The Blomsma Code - Monday, May 24, 2010 - Tackling the Problem of Modal Dialogs in MVVM
This plays nice with the asynchronous nature of dialogs in Silverlight, which are not truly model as they are in WPF or Windows Forms (this is because you can’t rely on the Windows message pump in a cross-platform framework such as Silverlight). Technical MVVM SilverlightOne of the first issues you’ll run into when wading into the waters of MVVM is how to display model dialogs to the user while executing code in the view-model. One of the main benefits of MVVM is better application maintainability. Another benefit is testability. This feels to loosely couples to me. Tony and Zuzana's World - Friday, January 28, 2011 - 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. Technical MVVM SilverlightThe problem is that you have to pass the name of the property as a string when you fire the event from each property setter. In this post I will show you a better way, namely, how you can use lambda expressions instead of strings to pass the property name. You can download the code for this blog post here. Tony and Zuzana's World - Tuesday, January 25, 2011 - Simple MVVM Toolkit: Feature Rich with WPF and WP7 Support
On top of all that I’ve also added support for both WPF ( Windows Presentation Foundation ) and WP7 ( Windows Phone ). Technical MEF MVVM Silverlight WP7 WPFI’ve rounded out the feature set of my Simple MVVM Toolkit to include a Message Bus (also known as an event aggregator or mediator ) for loosely coupled communication among view-models and to support MEF (Managed Extensibility Framework0 for dependency injection (also known as inversion of control) of service agents to better enable unit testing of view-models. What’s next? Tony and Zuzana's World - Friday, February 4, 2011 %>
| | |