|
|
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.
|
6 Articles match "Property","Silverlight"
|
Related DevelopMentor Courses
|
MORE
|
|
Essential Silverlight 3
In this course, you learn to: Identify when and where Silverlight should be used Use Expression Blend to design your user interface Use Visual Studio 2008 to build a Silverlight project and manage its code using C# Exploit the layout controls to create compelling user interfaces Incorporate Silverlight content into your existing web sites Build user and custom controls that support templates and styling Use Behaviors, Actions and Triggers to create reusable functionality across applications Integrate animations, special effects, perspective transforms and media to create a professional UI Exploit
DevelopMentor Courses
- Wednesday, June 17, 2009
Virtual Advanced Windows Presentation Foundation
You'll get answers to these questions: What are Dependency Properties and how do I use them properly? Next we will examine how visual properties are managed by the system. Model-View-Viewmodel The Model-View-Viewmodel (MVVM) pattern has become the dominant MVC style pattern for WPF and Silverlight development. Get an in-depth look at the core classes that make up the WPF platform. Learn how to build custom panels and when it is necessary.
DevelopMentor Courses
- Thursday, March 4, 2010
Essential Windows Presentation Foundation
Silverlight Build user interfaces with Visual Studio 2008 and Expression Blend Design and debug your applications with available Microsoft and 3rd-party tools Create professional, modern interfaces with animations and special effects Change the appearance of controls with themes Create vector-based 2D graphics with Expression Blend Deploy your application using ClickOnce to the browser Understand the differences between a control template, a custom control, and a user control Utilize your existing controls, forms, and resources from Windows Forms or Win32 with WPF Essential Windows Presentation
DevelopMentor Courses
- Friday, June 12, 2009
|
15 Articles match "Property","Silverlight"
|
The Latest from DevelopMentor
|
MORE
|
|
MVVM: Rename TreeView nodes
First, let’s add a property to indicate whether we are in “editing” mode or not.
This This is a simple field-backed property that raises the PropertyChange notification:
{rtf1ansiansicpglang1024noproof65001uc1 the Name property that is being used to display the name. I know I said I was going to cover some services next, but I got a request last night
to to
Mark's Blog of Random Thoughts
- Thursday, January 28, 2010
MVVM: Views and ViewModels
in the case of a WPF/Silverlight application this is most commonly the XAML and
XAML lt; Setter TargetName ="tb" Property ="FontWeight" Value ="Bold"
/> not very testable – so the converter will data bind to a string (filename) property
of Notice it data binds to a couple of properties – FullName In the previous post, I provided a link to the project template you can use to start
a a
Mark's Blog of Random Thoughts
- Friday, January 22, 2010
MVVM Helpers 1: Views and ViewModels
in the case of a WPF/Silverlight application this is most commonly the XAML and
XAML lt; Setter TargetName ="tb" Property ="FontWeight" Value ="Bold"
/> not very testable – so the converter will data bind to a string (filename) property
of Notice it data binds to a couple of properties – FullName In the previous post, I provided a link to the project template you can use to start
a a
Mark's Blog of Random Thoughts
- Friday, January 22, 2010
|
-
|
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. However easy as it might be is seems to confuse people as I have seen some terrible examples where people make a complete mess of things. Josh Smith did an excellent screen cast for Pixel8 on using MVVM with WPF, you can find it here . 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,
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.
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
The Problem Solver
- Monday, April 27, 2009
-
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. So now the complete template looks like:
1:
2:
3:
4: <#
5: Dictionary props = new Dictionary ();
6: props.Add( "FirstName" , "string" Fortunately I was not the first person to run into this limitation, Jason Jarrett did as well and he described the solution in a blog post here .
The Problem Solver
- Monday, March 23, 2009
-
Using T4 templates with Silverlight
The following is a simple template to create a simple class 1:
2:
3: <#
4: Dictionary props = new Dictionary ();
5: props.Add( "FirstName" , "string" );
6: props.Add( "LastName" , "string" );
7: props.Add( "Age" , "int" );
8: #>
9: namespace T4Test
10: {
11: public class Demo
12: {
13: <#
14: foreach (KeyValuePair
The Problem Solver
- Saturday, March 21, 2009
-
Six Things That’ll Surprise You About .NET 4.0
properties window to the side. that the WPF and Silverlight designers in VS
2010 I recently wrote an article for DevelopMentor ’s
Developments Developments entitled
“ Six Things
That’ll That’ll Surprise You About .NET
Michael C. Kennedy's Weblog
- Wednesday, November 11, 2009
-
My First Silverlight 3 App
Had a brief rest from patterns and parallel stuff to have a quick play with Silverlight 3. I mainly wanted to see the out of browser aspect, as I think the idea of being able to build RIA that also run on the desktop is very compelling…. So what to build, I really like the iPhone weather app so I thought I’d have a go at reproducing it in Silverlight, below is a screen shot showing it running out of the browser. I’m using isolated storage to store the list of weather centre’s of interest, a more typical line of business app would store app config on the web server/cloud and
.NET Mutterings
- Thursday, July 23, 2009
-
WPF MVVM Helper Library (WPF + MVVM = testability)
usage around the WPF and Silverlight technology stack. Next, in each view (XAML) you set the DataContext property to your view model,
the using the InputBinder attached property:
< julmar : KeyBinding Command ="{ Binding ExitCommand }" Key ="F3" Modifiers ="ALT"
/> There's been a lot of talk about the Model-View-ViewModel pattern recently and it's
usage When teaching WPF, I
always
|
|
|