| |
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 "2010","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). iOS : Build multi-touch enabled applications on platforms such as WPF, Silverlight, and Apple's iPhone / iPad. You learn a myriad of patterns and best practices, and you get hands-on experience developing applications using Visual Studio 2010. assuming Silverlight 5.0 and jQuery. and jQuery. 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! You learn a myriad of patterns and best practices, and you get hands-on experience developing applications using Visual Studio 2010. Workflow 4, ASP.NET MVC and Silverlight. Leverage new features of C# 4.0, couldn't? DevelopMentor Courses - Tuesday, March 1, 2011 Llewellyn Falco (Approval Tests): What I've learned about open source by pairing with Simon Cropp Some of these were libraries that were put in my Global Assembly Cache (GAC) by VisualStudio (2010) but not by (2012). That Silverlight experiment? 'Over the last 2 weeks I have be fortunate enough to pair with Simon Cropp for about 8 hours on my open source project ApprovalTests. Simon has taught me a lot about running a better open source project, this blog is an attempt to share some of that for those not fortunate enough to be able to pair with Simon themselves. Think about your ''brand'' Often I am writing ApprovalTests because I use ApprovalTests myself. There isn''t. DevelopMentor Courses - Saturday, May 25, 2013 |
54 Articles match "2010","Silverlight"
| The Latest from DevelopMentor | MORE | | Llewellyn Falco (Approval Tests): What I've learned about open source by pairing with Simon Cropp Some of these were libraries that were put in my Global Assembly Cache (GAC) by VisualStudio (2010) but not by (2012). That Silverlight experiment? 'Over the last 2 weeks I have be fortunate enough to pair with Simon Cropp for about 8 hours on my open source project ApprovalTests. Simon has taught me a lot about running a better open source project, this blog is an attempt to share some of that for those not fortunate enough to be able to pair with Simon themselves. Think about your ''brand'' Often I am writing ApprovalTests because I use ApprovalTests myself. There isn''t. DevelopMentor Courses - Saturday, May 25, 2013 2011 Recap My first client was a pharmaceutical distribution company that was porting two applications, one a Windows Forms app and the other an ASP.NET app, over to a single Silverlight app that would run both in-browser and out-of-browser. Then I picked up an ASP.NET MVC project in Plano, Texas, creating a web portal hosting several ASP.NET and Silverlight apps. It was at that time that I decided to write my own MVVM Toolkit, which I called “ Simple MVVM Toolkit ,” first targeting it for Silverlight, and then adding support for both WPF and Windows Phone. Cheers, Tony. Personal Tony and Zuzana's World - Tuesday, January 31, 2012 Build a Multi-Project Visual Studio Template Earlier this year I authored an open-source toolkit, called Simple MVVM Toolkit , to help developers build Silverlight, WFP and Windows Phone applications based on the Model-View-ViewModel design pattern. good example is the SimpleMvmRiaServices project template shown in the first screenshot, which generates a Visual Studio solution with three projects: an ASP.NET Web project, a Silverlight client project, and a Test project for unit tests. First you’ll need to install the Visual Studio 2010 SP1 SDK (assuming you’ve first installed SP1 for VS 2010 ). Enjoy. Tony and Zuzana's World - Wednesday, September 14, 2011 | -
| The Best from DevelopMentor | MORE | - 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. Tags: NET Silverlight ASP.NET VS2010 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. For example in example below the FirstName is a regular property while the LastName below is an indexed property. get; set; }. public Person(). {. The Problem Solver - Monday, April 12, 2010 - MDN - Augusta Developer Event, 24th of February 2010
Time for the first Augusta Developer Event of 2010. Join us for a morning filled with information about Silverlight. February 24th, 2010 at 9:00am. What is Silverlight? Introduction to Silverlight for decision makers, architects and developers. Silverlight vs. WFP vs. Windows Forms vs. ASP.NET. Silverlight vs. WFP vs. Windows Forms vs. ASP.NET. Silverlight and Section 508 compliance. Silverlight architecture overview. Introduction to XAML, Silverlight assemblies, n-tier development, asynchronous behavior, …. Wrap up. Augusta. The Blomsma Code - Tuesday, February 2, 2010 - More Workflow 4 Services and duplex communications
Unfortunate because this rules out scenarios like Silverlight. This way the workflow service is still usable from clients, like Silverlight, where creating a ServiceHost is not an option. Tags: NET Workflow WCF Silverlight WF4 VS2010 Yesterday I posted a long blog post explaining how to do duplex communications in a Workflow service. Also the callback address had to be passed by the client using CallbackContextMessageProperty and the workflow service had to use a callback correlation handle to connect the Receive activity with the Send activity used for the callback. Enjoy! The Problem Solver - Tuesday, May 4, 2010 - Using Silverlight to Access WIF secured WCF Services (Part 2)
Requesting Tokens from within Silverlight. Since Silverlight does not support issued token credentials, we must handcraft the SOAP security header. If Silverlight would only support client certificate credentials…. This was one of my most popular blog post in the recent time (please read it first to get the necessary background information). thought I give this another shot with the new SL/WIF integration. There are other ways to accomplish the below things, e.g. using the SL application service or passive identity providers. endpoint (like the one in StarterSTS or ADFS2). www.leastprivilege.com - Sunday, March 21, 2010 - 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 - Silverlight 4 and ICommand
Silverlight 4 offers the opportunity to databind against a command. The Quick command allows you to assign a lambda expression to a ICommand property like this: public class MainView { public MainView() { About = new QuickCommand( c => MessageBox.Show( "© Develop-one, 2010" ) ); } public ICommand About { get; set; } }. This is useful in MVVM scenarios. null ) { _executeMethod( parameter ); } } #endregion } #endregion QuickCommand. Sweet! The Blomsma Code - Monday, May 24, 2010 - Presentations from last weeks Augusta Developer Event
02-24-2010 MDN - Silverlight and Section 508 compliance.pptx. Tags: NET Silverlight Here are the two presentations I did at last weeks Augusta Developer Event. 02-24-2010 MDN - Choosing between WinForms, WPF, ASP.NET, Silverlight.pptx. The Blomsma Code - Tuesday, March 2, 2010 %>
| | |