| |
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 "Namespace","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. Learn to write code using new.NET class libraries like LINQ and Silverlight. assuming Silverlight 5.0 Main Topic Day 1 Introduction to WPF and Silverlight (version 4.0 and 5.0 DevelopMentor Courses - Tuesday, March 1, 2011 Getting started with RavenDB in an ASP.NET MVC application The book class is pretty basic and looks like this; 1: namespace RavenMvc.Models. Part of the RavenDB.Server package is a Silverlight client that lets you manage the server and inspect, or even change, the data. RavenDB is one of the newer document type databases that is conceptually comparable to MongoDB or CouchDB. One of the nice thing about RavenDB, at least for a.NET developer, is that is has been developed with.NET in mind from the start. And this makes it really easy to get started with. Instead I just create my C# classes and store them as documents in the database. 3: //. The Problem Solver - Sunday, November 25, 2012 Maurice de Beijer: Getting started with RavenDB in an ASP.NET MVC application The book class is pretty basic and looks like this; 1: namespace RavenMvc.Models. Part of the RavenDB.Server package is a Silverlight client that lets you manage the server and inspect, or even change, the data. RavenDB is one of the newer document type databases that is conceptually comparable to MongoDB or CouchDB. One of the nice thing about RavenDB, at least for a.NET developer, is that is has been developed with.NET in mind from the start. And this makes it really easy to get started with. Instead I just create my C# classes and store them as documents in the database. 3: //. DevelopMentor Courses - Sunday, November 25, 2012 |
23 Articles match "Namespace","Silverlight"
| The Latest from DevelopMentor | MORE | | Getting started with RavenDB in an ASP.NET MVC application The book class is pretty basic and looks like this; 1: namespace RavenMvc.Models. Part of the RavenDB.Server package is a Silverlight client that lets you manage the server and inspect, or even change, the data. RavenDB is one of the newer document type databases that is conceptually comparable to MongoDB or CouchDB. One of the nice thing about RavenDB, at least for a.NET developer, is that is has been developed with.NET in mind from the start. And this makes it really easy to get started with. Instead I just create my C# classes and store them as documents in the database. 3: //. The Problem Solver - Sunday, November 25, 2012 Getting started with RavenDB in an ASP.NET MVC application The book class is pretty basic and looks like this; 1: namespace RavenMvc.Models. Part of the RavenDB.Server package is a Silverlight client that lets you manage the server and inspect, or even change, the data. RavenDB is one of the newer document type databases that is conceptually comparable to MongoDB or CouchDB. One of the nice thing about RavenDB, at least for a.NET developer, is that is has been developed with.NET in mind from the start. And this makes it really easy to get started with. Instead I just create my C# classes and store them as documents in the database. 3: //. The Problem Solver - Sunday, November 25, 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. Entities; namespace $safeprojectname$ { class Program { static void Main( string [] args) { // Client code goes here. } } }. Enjoy. Tony and Zuzana's World - Wednesday, September 14, 2011 | -
| 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: {. 13: set. 14: {. 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. Tags: NET VB DevCenter Silverlight Data Access ASP.NET.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). 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 - 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. For example, I could have a method called ShowCustomer. Tony and Zuzana's World - Friday, July 22, 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. 5: Dictionary props = new Dictionary (); 6: props.Add( "FirstName" , "string" ); 7: props.Add( "LastName" , "string" ); 8: props.Add( "Age" , "int" ); 9: #> 10: namespace T4Test. and the generated output looks like: 1: namespace T4Test. 11: {. 13: {. 17: {. The Problem Solver - Monday, March 23, 2009 - 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 - Using Silverlight to Access WIF secured WCF Services
Disclaimer: At the time of this writing, the current version of Silverlight is v3 and WIF is in beta 2. Another technology that comes up very often is Silverlight – and especially the “story” of Silverlight and WCF/WIF. When thinking about Silverlight and back-end security in general – there are two fundamental scenarios – short of really good names – I call them “passive” and “active”. An example would be that the user first authenticates with the web application and then starts the Silverlight app from there. public override string Namespace. {. www.leastprivilege.com - Wednesday, October 28, 2009 - Silverlight 4 and ICommand
Silverlight 4 offers the opportunity to databind against a command. This ICommand property can then be used for databinding a button control (I removed the default namespace declarations): < HyperlinkButton Content ="About" Name ="hyperlinkButton1" HorizontalAlignment ="Center" Command ="{Binding About}" /> See how the ‘Command’-property of the button binds against ‘About’-property of the MainView class? This is useful in MVVM scenarios. null ) { _executeMethod( parameter ); } } #endregion } #endregion QuickCommand. Sweet! The Blomsma Code - Monday, May 24, 2010 %>
| | |