| |
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 "Silverlight","XAML"
| Related DevelopMentor Courses | MORE | | 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 basics Silverlight is fast becoming Microsoft's next generation UI technology for business applications. DevelopMentor Courses - Tuesday, March 1, 2011 NET 3.5 & 4.0: LINQ/EF, WCF, WPF/SL, MVVM, MEF Training Create Silverlight business applications that run out-of-the-browser with elevated trust on multiple operating systems (Windows, Mac, etc) with automatic updates. Design WPF and Silverlight applications using the MVVM design pattern to separate application logic from presentation and facilitate Test Driven Development (TDD). Windows Presentation Foundation (WPF) and Silverlight (SL), Windows Communication Foundation (WCF), Entity Framework (EF) and WCF Data Services (OData). Day 4: WPF and Silverlight WPF Architecture WPF is the GUI technology of the future. & 4.0 DevelopMentor Courses - Wednesday, February 22, 2012 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 |
21 Articles match "Silverlight","XAML"
| The Latest from DevelopMentor | MORE | | HTML5 sessie bij 4DotNet in Utrecht En dan hebben we natuurlijk nog de vraag wat ik moet doen als ik tussen Silverlight en HTML5 moet kiezen voor een nieuwe applicatie? Dus als je webontwikkelaar bent, als je XAML ontwikkelaar bent en je wilt de ‘concurrentie’ in de gaten houden, of je wilt gewoon op de hoogte blijven van de laatste technieken: hier moet je bij zijn! Op donderdag 5 januari 2012 beginnen we het nieuwe jaar met een herhaling van de sessie van Maurice de Beijer over HTML5. Deze avond wordt gehost door 4dotnet en zal plaats vinden in Utrecht. Je kan je hier inschrijven. www.TheProblemSolver.nl The Problem Solver - Thursday, December 15, 2011 HTML5 sessie bij 4DotNet in Utrecht En dan hebben we natuurlijk nog de vraag wat ik moet doen als ik tussen Silverlight en HTML5 moet kiezen voor een nieuwe applicatie? Dus als je webontwikkelaar bent, als je XAML ontwikkelaar bent en je wilt de ‘concurrentie’ in de gaten houden, of je wilt gewoon op de hoogte blijven van de laatste technieken: hier moet je bij zijn! Op donderdag 5 januari 2012 beginnen we het nieuwe jaar met een herhaling van de sessie van Maurice de Beijer over HTML5. Deze avond wordt gehost door 4dotnet en zal plaats vinden in Utrecht. Je kan je hier inschrijven. www.TheProblemSolver.nl The Problem Solver - Thursday, December 15, 2011 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 | - 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. All you need to do is add a DomainDataSource control to the the XAML, point it to the generated DomainContext class (in this case NorthwindContext) and tell it which method to use to load the data from the web service(in this case LoadCustomers). Tags: NET VB DevCenter Silverlight Data Access ASP.NET.Next add a DataGrid to display the data and you are good to go. Adding paging. assume this is just a small bug in the current preview. Enjoy! The Problem Solver - Monday, April 27, 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. While not having to know the objects structure at design time is nice but in the XAML above I still hard coded the data bindings so that doesn’t buy us much yet. The LastName is printed twice because it is both hard coded into the XAML and added dynamically. Tags: NET Silverlight ASP.NET VS2010 The syntax is very similar to a normal data binding, only in this case you need to use the [key] syntax instead. The Problem Solver - Monday, April 12, 2010 - Tackling the Problem of Modal Dialogs in MVVM
Designers can wire up actions to elements straight from the XAML. 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. 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. And you want to bind it to a XAML page that has two textboxes. 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. You can download the code for this blog post here. null ). Body).Member.Name; 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 - MDN - Augusta Developer Event, 24th of February 2010
Join us for a morning filled with information about Silverlight. 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, …. Silverlight + Windows Communication Foundation overview. Silverlight + RIA Service overview. The Blomsma Code - Tuesday, February 2, 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. And you want to bind it to a XAML page that has two textboxes. The XAML looks like this in the Visual Studio designer: In the button click of “Show Person” you display a message box with Person Name and Age, and in the click of “Birthday” you increment Person Age. Technical MVVM Silverlightcsharpcode,csharpcode pre. {. Tony and Zuzana's World - Tuesday, January 25, 2011 %>
| | |