Windows Scripting
  Home arrow Windows Scripting arrow Page 4 - Completing a WPF To-Do List Application
ASP Free Forums 
.NET  
ASP  
ASP Code  
ASP.NET  
ASP.NET Code  
BrainDump  
C#  
Code Examples  
Database  
Database Code  
IIS  
Microsoft Access  
MS SQL Server  
Silverlight  
Visual Basic.NET  
Windows Scripting  
Windows Security  
XML  
Mobile Linux 
App Generation ROI 
IBM® developerWorks 
ASP Web Hosting  
ASP.NET Web Hosting 
Windows Web Hosting
 
Weekly Newsletter
 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
WINDOWS SCRIPTING

Completing a WPF To-Do List Application
By: Peyton McCullough
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 5 stars5 stars5 stars5 stars5 stars / 2
    2008-09-15

    Table of Contents:
  • Completing a WPF To-Do List Application
  • Saving the task list
  • Stylizing the application
  • Stylizing the application, continued
  • Finishing Up

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT


    Completing a WPF To-Do List Application - Stylizing the application, continued


    (Page 4 of 5 )

    This problem is easily fixed, thankfully. Just as, in C#, one class can inherit from another, so too, in XAML, can one style inherit from another. The default button style was defined at the application level. However, any other definitions at a lower level (at the window level or the layout level—it's also possible to give, for example, a Grid its own resources) will take precedence. When we do define a new style, we can re-use elements from another style so that the properties don't all have to be redefined. First, though, the button style that we just created will need to have an identifier:


    <Style x:Key="orangeButtonStyle" TargetType="{x:Type Button}">


    The dialog window will need its own Resources section in AddTaskDialog.xaml:


    <Window.Resources>


    </Window.Resources>


    Inside this section, we can create a new style which is based on the other one and will only apply to buttons within the dialog:


    <Style TargetType="{x:Type Button}" BasedOn="{StaticResource orangeButtonStyle}">

     <Setter Property="FontSize" Value="11" />

    </Style>


    The font size now fits the small size of the button.

    Notice that this creates another problem, however. When the first style is given an identifier, it ceases to be the default style automatically applied to everything. It is possible, though, to explicitly apply a style to a control:


    <Button Name="AddButton" Grid.Row="1" Grid.Column="0" Margin="0,3,2,0" Content="Add Task" Click="AddButton_Click" Style="{StaticResource orangeButtonStyle}" />

    <Button Name="DeleteButton" Grid.Row="1" Grid.Column="1" Margin="2,3,0,0" Content="Delete Task" Click="DeleteButton_Click" Style="{StaticResource orangeButtonStyle}" />


    Still, a neater, more practical solution would just be to inherit from orangeButtonStyle in the main window itself:


    <Style TargetType="{x:Type Button}" BasedOn="{StaticResource orangeButtonStyle}" />


    More Windows Scripting Articles
    More By Peyton McCullough


       · Hello, all,In this article, which is the last of a four-part series, we finish...
       · This was a great article for some basics in WPF, will the source code be provided...
     

    WINDOWS SCRIPTING ARTICLES

    - More Windows Scripting Workarounds from Nilpo
    - Overloading Methods and More in VBScript
    - Improving MFC for Windows Vista
    - Regular Expressions in VBScript
    - Working with Dates in WMI
    - Completing Calendars with VBScript Date Func...
    - Building Calendars with VBScript Date Functi...
    - Working With Dates and Times in VBScript
    - Designing WCF DataContract Classes Using the...
    - Understanding Dates and Times in VBScript
    - Working With Arrays in VBScript
    - Compressed Folders in WSH
    - Using .NET Interops in VBScript
    - Nilpo`s Scripting Secrets, Vol I
    - Database operations using Silverlight 2.0 WC...





    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 1 Hosted by Hostway
    For more Enterprise Application Development news, visit eWeek