| |
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.
|
24 Articles match "Application","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). Application-Restricted Media. Building next-generation business applications. 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. Improved Text support. Text Tracking & Leading. Linked Text Containers. OpenType and Pixel Snapped Text. DevelopMentor Courses - Monday, December 12, 2011 Getting started with RavenDB in an ASP.NET MVC application Creating a real simple ASP.NET MVC application using RavenDB A quick demo will show just how easy it is to get started. am starting with a standard ASP.NET MVC 3 application here. This is an object that only needs to be created once and can be cached for the duration of the application live time. One nice and simple way of doing this is by adding the following bit of code to the Global.asax and calling this from the Application_Start() function. In this demo I am going to use a simple book application to show how simple it is to get started with RavenDB. The Problem Solver - Sunday, November 25, 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). Learn about IaaS, PaaS, and design patterns for scalable cloud-based applications. LINQ : Use LINQ to access objects, XML, and SQL relational data MVC : Learn the how build modern web applications using ASP.NET MVC 3.0 Learn to write code using new.NET class libraries like LINQ and Silverlight. DevelopMentor Courses - Tuesday, March 1, 2011 |
68 Articles match "Application","Silverlight"
| The Latest from DevelopMentor | MORE | | Installing RavenDB 2 This Management Studio is a Silverlight application that will let us manage different aspects of the server. Don’t worry about creating a database for now, this will be done automatically when we connect from the client application when needed. In the next post we will create a simple client console application to store some data in this server and then retrieve and display it. Before we get started with RavenDB we need to install the required parts. Which package to install? It turns out we need to use two packages to get started, the client and server part. Enjoy! The Problem Solver - Friday, January 4, 2013 Maurice de Beijer: Installing RavenDB 2 This Management Studio is a Silverlight application that will let us manage different aspects of the server. Don’t worry about creating a database for now, this will be done automatically when we connect from the client application when needed. In the next post we will create a simple client console application to store some data in this server and then retrieve and display it. Before we get started with RavenDB we need to install the required parts. Which package to install? It turns out we need to use two packages to get started, the client and server part. Enjoy The Problem Solver - Friday, January 4, 2013 Getting started with RavenDB in an ASP.NET MVC application Creating a real simple ASP.NET MVC application using RavenDB A quick demo will show just how easy it is to get started. am starting with a standard ASP.NET MVC 3 application here. This is an object that only needs to be created once and can be cached for the duration of the application live time. One nice and simple way of doing this is by adding the following bit of code to the Global.asax and calling this from the Application_Start() function. In this demo I am going to use a simple book application to show how simple it is to get started with RavenDB. The Problem Solver - Sunday, November 25, 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. 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. Tags: NET DevCenter WPF Silverlight 11: {. The Problem Solver - Tuesday, April 7, 2009 - 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. Setting this to double the PageSize will improve the responsiveness of the the client application so might be a good idea if the data isn’t too large. 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. Sometimes the lost of data to load can get somewhat large and you might not want to load all data. assume this is just a small bug in the current preview. Enjoy! The Problem Solver - Monday, April 27, 2009 - Access Control Service: Walkthrough Videos of Web Application, SOAP, REST and Silverlight Integration
This video does a quick walkthrough of the solution and shows the web application part. Part 4 – Silverlight and Web Identity Integration. The Silverlight Client shows ho to sign in to the application using a registered identity provider (including web identities) and using the resulting SWT token to call our REST service. This is designed to be a desktop (OOB) client application (thanks to Jörg for the UI magic). Over the weekend I worked a little more on my ACS2 sample. Have fun ;). Part 1 – Overview. watch. Part 2 – SOAP Service and Client. watch. watch. www.leastprivilege.com - Tuesday, May 24, 2011 - Commands versus Event Triggers in MVVM
For several reasons I tend to favor event triggers over commands in most scenarios, especially for Silverlight applications. 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 SilverlightRecently I’ve received some questions from the Simple MVVM Toolkit’s discussion forum on when to use commands versus Blend-style event triggers. public void ShowCustomer() { if (SelectedCustomer != Tony and Zuzana's World - Friday, July 22, 2011 - Keep Dependency Injection Simple with MEF
Having to click through screens to test an application can be tedious and time-consuming, and it may not provide good code coverage or regression testing. and Silverlight right out of the box and is focused on the simple task of providing instances based on an agreed-upon contract. For that we’ll leverage the Silverlight Unit Testing Framework , which ships with the Silverlight Toolkit. We add a new project to the solution by selecting the Silverlight Unit Test Application project template. Technical MEF MVVM SilverlightHave fun! Tony and Zuzana's World - Tuesday, March 8, 2011 - Tackling the Problem of Modal Dialogs in MVVM
One of the main benefits of MVVM is better application maintainability. 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. 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 %>
| | |