| |
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","Visual Studio"
| 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). 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. OpenType and Pixel Snapped Text. Postscript vector printing. PivotViewer. ClickCount. DevelopMentor Courses - Monday, December 12, 2011 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 You can download the latest version here and take it for a spin – or get it from the Visual Studio Extensions Gallery by opening Visual Studio and selecting Extensions Manager from the Tools menu. 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. Enjoy DevelopMentor Courses - Friday, March 2, 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. 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. DevelopMentor Courses - Tuesday, March 1, 2011 |
38 Articles match "Silverlight","Visual Studio"
| The Latest from DevelopMentor | MORE | | Installing RavenDB 2 There are several ways we can do this and one of the easiest is using the NuGet Package manager from within Visual Studio 2012 with the available RavenDB NuGet packages. Adding them is easy, just open the NuGet Package Manager Console window from the Visual Studio Tools menu and issue the following two command: 1: Install-Package RavenDB.Server. We need this when we start working with the server from our client code but we can also het to the RavenDB Management Studio using this URL. The RavenDB Management Studio. Which package to install? What is next? The Problem Solver - Friday, January 4, 2013 Maurice de Beijer: Installing RavenDB 2 There are several ways we can do this and one of the easiest is using the NuGet Package manager from within Visual Studio 2012 with the available RavenDB NuGet packages. Adding them is easy, just open the NuGet Package Manager Console window from the Visual Studio Tools menu and issue the following two command: 1: Install-Package RavenDB.Server -Pre. We need this when we start working with the server from our client code but we can also het to the RavenDB Management Studio using this URL. The RavenDB Management Studio. Which package to install? Enjoy The Problem Solver - Friday, January 4, 2013 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 You can download the latest version here and take it for a spin – or get it from the Visual Studio Extensions Gallery by opening Visual Studio and selecting Extensions Manager from the Tools menu. 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. Enjoy DevelopMentor Courses - Friday, March 2, 2012 | -
| The Best from DevelopMentor | MORE | - 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. To enhance developer productivity, the toolkit combines a set of helper classes with code and xml snippets, as well as Visual Studio item and project templates. After installing the toolkit, all a developer needs to do to get started is open Visual Studio and create a new project by selecting one the project templates that appear under the Mvvm category. Tony and Zuzana's World - Wednesday, September 14, 2011 - Six Things That’ll Surprise You About.NET 4.0
as well as Visual Studio 2010. 1 Visual Studio 2010. for the very first time an true open source will become and integral and supported part of Visual Studio and.NET? This would give your application essentially a visual programmability. that the WPF and Silverlight designers in VS 2010 are greatly improved. Visual Studio 2010 Multi-monitor Support. Tags: Articles DevelopMentor Visual Studio I recently wrote an article for DevelopMentor ’s Developments entitled. Six Things That’ll Surprise You About.NET 4.0 ”. Michael C. Kennedy's Weblog - Wednesday, November 11, 2009 - 11 Killer Open Source Projects I Found with NuGet
It's a killer new way to find, install, maintain, and manage references to open source libraries in Visual Studio 2010. What I want to talk about is all the cool open source projects I found just by flipping through the pages of the NuGet directory in the Visual Studio "Add Library Package Reference" dialog. The Facebook C# SDK helps.Net developers build web, desktop, Silverlight, and Windows Phone 7 applications that integrate with Facebook. Articles ASP.NET NoSQL Open Source Tools Visual StudioRazorEngine at [link]. 51degrees.mobi at [link]. Michael C. Kennedy's Weblog - Wednesday, January 19, 2011 - Getting T4 templates to work with Silverlight
In a previous blog post I mentioned that T4 templates didn’t quite work with Silverlight development. The reason being that Visual Studio decides to load the Silverlight version of System.dll which doesn’t contain all the required classes. By default Visual Studio allows you to create T4 templates by renaming a text files extension from TXT to TT but that is about it. Fortunately Clarius has developed a T4 editor that plug into Visual Studio and makes live a bit easier when developing T4 templates. 11: {. 12: public class Demo. The Problem Solver - Monday, March 23, 2009 - Keep Dependency Injection Simple with MEF
In fact, thinking about the testability of ViewModels can help remind you to keep visual elements, such as brushes and dialogs, out of the ViewModel. and Silverlight right out of the box and is focused on the simple task of providing instances based on an agreed-upon contract. When creating an app using the toolkit, add an “Injected” ViewModel Locator using the supplied Visual Studio item template. For that we’ll leverage the Silverlight Unit Testing Framework , which ships with the Silverlight Toolkit. Technical MEF MVVM SilverlightHave fun! Tony and Zuzana's World - Tuesday, March 8, 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. null ). Tony and Zuzana's World - Tuesday, January 25, 2011 - Silverlight 5 release
Silverlight 5 got released this weekend and can be downloaded here: [link]. from the Silverlight 5 download package). 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. OpenType and Pixel Snapped Text. Postscript vector printing. PivotViewer. ClickCount. DevelopMentor Courses - Monday, December 12, 2011 %>
| | |