| |
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.
|
16 Articles match "Property","Silverlight"
| 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 Llewellyn Falco (Approval Tests): What I've learned about open source by pairing with Simon Cropp That Silverlight experiment? Here''s the high level view create a solution level file for the version number add it to packages via link (there is a drop down on add) Manually change your.csproj file to move it into your properties folder PropertiesVersionInfo.cs '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. DevelopMentor Courses - Saturday, May 25, 2013 Foundations of C# Programming and the.NET Framework Training Examine core language features such as types, variables, and control constructs Use object-oriented features such as class, interface, protection, and inheritance Perform error notification and error handling using exceptions Use properties to implement the private data/public accessor pattern Use namespaces to group related types Use delegates and events to implement callbacks Override Object class methods such as ToString Avoid dll conflicts during deployment Use dynamic binding and polymorphism to write generic code (i.e., interface vs. abstract class, or property vs. field)? DevelopMentor Courses - Wednesday, February 22, 2012 |
45 Articles match "Property","Silverlight"
| The Latest from DevelopMentor | MORE | | Llewellyn Falco (Approval Tests): What I've learned about open source by pairing with Simon Cropp That Silverlight experiment? Here''s the high level view create a solution level file for the version number add it to packages via link (there is a drop down on add) Manually change your.csproj file to move it into your properties folder PropertiesVersionInfo.cs '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. DevelopMentor Courses - Saturday, May 25, 2013 How to get started with Knockout.js this become somewhat more like Silverlight/WPF. Not that it is exactly the same but it uses the same MVVM pattern and data binding that Silverlight developers are used to. The first two data bind the value property of the control to the firstName and lastName from the ViewModel. Once you get into doing more client side JavaScript code with business applications and REST services you are going to run into the question of how to construct the client side HTML required to show the data to the users. click( function () {. $.getJSON( getJSON( "/services/books" ).then( The Problem Solver - Monday, February 6, 2012 How to get started with Knockout.js this become somewhat more like Silverlight/WPF. Not that it is exactly the same but it uses the same MVVM pattern and data binding that Silverlight developers are used to. The first two data bind the value property of the control to the firstName and lastName from the ViewModel. Once you get into doing more client side JavaScript code with business applications and REST services you are going to run into the question of how to construct the client side HTML required to show the data to the users. click( function () {. $.getJSON( getJSON( "/services/books" ).then( The Problem Solver - Monday, February 6, 2012 | -
| The Best from DevelopMentor | MORE | - Easier Async for Silverlight Apps using MVVM
WPF and Silverlight have Dispatcher.CheckAccess / Dispatcher.BeginInvoke. For example, whenever you fire NotifyPropertyChanged from the setter in a view-model property, you should check to make sure that you’re on the UI thread and, if not, marshal the call over to the UI thread. The code-behind for the view simply subscribes to the view-model’s OnMaxReachedNotice event and handles it by displaying the QueryUserDialog, invoking the Completed property of the events args, which tells the view-model whether or not to continue iteration. Technical MVVM Silverlight Tony and Zuzana's World - Saturday, January 29, 2011 - 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. And the View uses data binding to set the FontWeight property. 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. Of course it is just a matter of setting properties so doing so from code is easy enough. 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). Adding paging. Using progressive loading. 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. 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. For example in example below the FirstName is a regular property while the LastName below is an indexed property. All you need to do is add a property with the following syntax: public object this [ string key]. Tags: NET Silverlight ASP.NET VS2010 get; set; }. The Problem Solver - Monday, April 12, 2010 - Commands versus Event Triggers in MVVM
For several reasons I tend to favor event triggers over commands in most scenarios, especially for Silverlight applications. One of the main benefits of commands lies in the CanExecute property of ICommand, so that you can enable and disable a control based on a condition. ICommand exposes a CanExecuteChanged event which when fired causes a binding to check the CanExecute property. You can easily achieve the same result as CanExecute simply by binding the IsEnabled property of a control to a boolean property on the ViewModel. Technical MVVM Silverlight Tony and Zuzana's World - Friday, July 22, 2011 - Keep Dependency Injection Simple with MEF
and Silverlight right out of the box and is focused on the simple task of providing instances based on an agreed-upon contract. Basically, you need to specify the service agent interface and a ServiceAgents property which specified what type of service agent you want to use. What this means is that MEF will invoke the setter of the ServiceAgents property, which will set the serviceAgent private field based on the agentType member (Real or Mock). For that we’ll leverage the Silverlight Unit Testing Framework , which ships with the Silverlight Toolkit. Have 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. The 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. In this case that something else would just be the name of the property. Tony and Zuzana's World - Tuesday, January 25, 2011 %>
| | |