Page view counter

Jesse Liberty - Silverlight Geek

More Signal Less Noise

Dependency Properties - Precedence

Today we wrap up dependency properties by talking about one of the most important, though typically invisible aspects: DP precedence order. This is critical because dependency properties, by their nature, are designed to have their final value set from more than one influence (e.g., resources, data binding, animation, etc.)

The rule is rigid, sensible and straight forward…

Animation uber alles.

If there is an animation affecting the value, that will take precedence over all other values

Local values over everything but Animation

In the absence of an animation, use the local value to override any other values

Templates/Styles if no animation or local values

If there is no animation or local value, use the value from the template, and if there is no template then from the style.

When all else fails, use the default

If none of the above apply, use the default value for that type.

The Default Value

It is the last rule that demands that every type have a default look, and it is because of that rule that you crated generic.xaml – so that if your custom control has a value that is not controlled by an animation, a local value, a template or a style, the Dependency Property System will turn to the default values in generic.xaml and use those.

Our First Application

With this, we're ready to examine the code to our first application.  As you may remember, we have three projects in one solution.  In CustomControl.cs we declare the visual logic of our control and we will, eventually declare the logic (event handlers, etc.) as well. For now, the listing is quite simple:

   1: using System.Windows.Controls;
   2:  
   3: namespace ClassLibrary
   4: {
   5:    public class CustomControl : Control 
   6:    {
   7:       public CustomControl()
   8:       {
   9:          DefaultStyleKey = typeof( CustomControl );
  10:       }
  11:    }
  12: }

The simplest logic you can add to get the default style to show. The default style, as you remember is in the file generic.xaml which in turn is in the Themes folder,

   1: <ResourceDictionary
   2:     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
   3:     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
   4:     xmlns:controls="clr-namespace:ClassLibrary" 
   5:     xmlns:vsm="clr-namespace:System.Windows;assembly=System.Windows" 
   6:     xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
   7:     xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
   8:     mc:Ignorable="d">
   9:     <Style TargetType="controls:CustomControl">
  10:         <Setter Property="Template" >
  11:             <Setter.Value>
  12:                 <ControlTemplate TargetType="controls:CustomControl">
  13:                     <Grid x:Name="LayoutRoot">
  14:                         <Ellipse x:Name="Core" 
  15:                             Width="75" Height="75" 
  16:                             Stroke="Blue" StrokeThickness="2" >
  17:                             <Ellipse.Fill>
  18:                                 <RadialGradientBrush>
  19:                                     <GradientStop Color="#FFE0E1F0" Offset="0.004"/>
  20:                                     <GradientStop Color="#FF8080B1" Offset="1"/>
  21:                                     <GradientStop Color="#FF05052B" Offset="0.911"/>
  22:                                 </RadialGradientBrush>
  23:                             </Ellipse.Fill>
  24:                         </Ellipse>
  25:                     </Grid>
  26:                 </ControlTemplate>
  27:             </Setter.Value>
  28:         </Setter>
  29:     </Style>
  30: </ResourceDictionary>

Remember to set the BuildAction property of this file to Resource

SetAsResource

Page.xaml will create an instance of your custom control and an instance of a TextBlock

   1: <UserControl x:Class="SkinnableCustomControl.Page"
   2:     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
   3:     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
   4:     xmlns:Controls="clr-namespace:ClassLibrary;assembly=ClassLibrary"              
   5:     Width="400" Height="300">
   6:     
   7:     <Grid x:Name="LayoutRoot" Background="White">
   8:         <Grid.RowDefinitions>
   9:             <RowDefinition Height=".7*" />
  10:             <RowDefinition Height=".3*" />
  11:         </Grid.RowDefinitions>
  12:         <Controls:CustomControl x:Name="CustomCtrl" Grid.Row="0" />
  13:         
  14:         <TextBlock Text="Skinnable Custom Control" 
  15:                    FontFamily="Georgia" FontSize="18" 
  16:                    HorizontalAlignment="Center" Grid.Row="1" />
  17:     </Grid>
  18: </UserControl>

When you run this, the custom control is drawn (along with the text block)

SkinnableCustomControlRunning

At the moment it doesn't respond to visual events such as mouse over, nor does it have any logic to handle clicks, but it does draw and it does have a default appearance. It exists (to a minimal degree) within the Parts and States model, and it is pretty straight forward from here to add the missing bits.

Next time.

 

-jesse

Comments

jesseliberty said:

Remember I said I'd post by 1pm? Okay, maybe I should have said every day and let it go at that. :-)

# October 2, 2008 1:40 PM

DotNetKicks.com said:

You've been kicked (a good thing) - Trackback from DotNetKicks.com

# October 2, 2008 11:57 PM

2008 October 03 - Links for today « My (almost) Daily Links said:

Pingback from  2008 October 03 - Links for today &laquo; My (almost) Daily Links

# October 3, 2008 4:18 AM

Silverlight news for October 3, 2008 said:

Pingback from  Silverlight news for October 3, 2008

# October 3, 2008 6:53 AM

Dew Drop - October 3, 2008 | Alvin Ashcraft's Morning Dew said:

Pingback from  Dew Drop - October 3, 2008 | Alvin Ashcraft's Morning Dew

# October 3, 2008 9:42 AM

Community Blogs said:

In this issue: Denislav Savkov, Martin Mihaylov, Matthias Shapiro, Mike Snow, Terence Tsang, Jesse Liberty

# October 3, 2008 3:48 PM

rachidadukes@live.com said:

This dependency properties concept is very interesting. Are you planning to create any video about it?

Thanks,

Rachida

# October 4, 2008 9:59 PM

jesseliberty said:

rachidadukes] This dependency properties concept is very interesting. Are you planning to create any video about it?<<

Absolutely. I’ve started a series of videos on Custom controls and one in the series will cover DPs in depth.

Thanks!

-j

# October 4, 2008 11:00 PM

Jesse Liberty - Silverlight Geek said:

Over the past month I've posted half a dozen min-articles about creating custom controls that can interact

# October 9, 2008 9:48 AM

Microsoft Weblogs said:

Over the past month I've posted half a dozen min-articles about creating custom controls that can interact

# October 9, 2008 10:11 AM

Mirrored Blogs said:

Over the past month I&#39;ve posted half a dozen min-articles about creating custom controls that can

# October 9, 2008 10:38 AM

Custom Controls - the handling at Blog von J??rgen Ebner said:

Pingback from  Custom Controls - the handling at Blog von J??rgen Ebner

# October 10, 2008 6:15 AM

mamadero2 said:

Jesse,

Are you still going to continue this series of posts? I felt it was left in the middle of something important....

# October 13, 2008 9:49 AM

jesseliberty said:

Mamadero2... I'd be happy to but what area would you like to see covered?  Have you checked out the tutorial on databinding? That might cover the areas that you feel are missing.  

# October 13, 2008 3:01 PM

Martin Kruszynski said:

What about value inheritance? If I set FontStyle in UserControl, child elements inherits font style.

# October 16, 2008 5:27 AM