xaml

Tag details

Welcome to the 'xaml' tag page at Technorati. This page features content from the farthest reaches of the Blogosphere that authors have "tagged" with 'xaml'.

Look up Offsite Link "xaml" at The Free Dictionary

Latest blogosphere posts tagged “xaml”

  • Dew Drop – November 24, 2009


    Alvin Ashcraft's Morning DewAuthority Authority: 127
      Jump to: .NET / Visual Studio | Web Development | Design / Methodology / Testing | Silverlight / WPF | Podcasts / Screencasts / Videos | Community / Events | Database | SharePoint | Miscellaneous | More Link Collections | Book of the Day   .NET / Visual Studio Source Code for ...
    2 days ago
  • Novell and Microsoft Have Big XAML News in Store


    fsdaily.com - Free Software News - Published newsAuthority Authority: 161
    Novell and Microsoft grow closer when it comes to an attack on Web standards; removal of Mono still proving tricky
    3 days ago
  • Markup extensions


    MSMVPS.COMAuthority Authority: 658
    Markup extensions allows you to extend the expressibility of XAML. You use markup extensions to escape the general treatment that attribute values get (by default, we’ve seen that they are treated as strings or that a type converter is used to convert them to the adequate type). Markup extension expressions are ...
    3 days ago
  • Dew Drop – Weekend Edition – November 21-22, 2009


    Alvin Ashcraft's Morning DewAuthority Authority: 127
      Jump to: .NET / Visual Studio | Web Development | Design / Methodology / Testing | Silverlight / WPF | Podcasts / Screencasts / Videos | Community / Events | Database | SharePoint | Miscellaneous | More Link Collections | Book of the Day   .NET / Visual Studio NHibernate and Composite ...
    5 days ago
  • XAML 2009 Features: FactoryMethod\Arguments


    Lester's WPF blogAuthority Authority: 512
    This is part of a series on New WPF\XAML Features Another new feature in XAML 2009 is the possibility of creating objects using the non-default constructors. The keyword here is x:Arguments So creating a person object with a constructor requiring Name\Age could be written in XAML as local : ...
    6 days ago
  • Dew Drop – November 20, 2009


    Alvin Ashcraft's Morning DewAuthority Authority: 127
      Jump to: .NET / Visual Studio | Web Development | Design / Methodology / Testing | Silverlight / WPF | Podcasts / Screencasts / Videos | Community / Events | Database | SharePoint | Miscellaneous | More Link Collections | Book of the Day   .NET / Visual Studio Depends vs Call, Do you ...
    6 days ago
  • XAML 2009 Features: Generics Support


    Lester's WPF blogAuthority Authority: 512
    This is part of a series on New WPF\XAML Features XAML 2009 supports generics J .. In previous releases, if you needed to have an observableCollection for databinding you would probably have written code like class PersonCollection :ObservableCollection Person > {}       ...
    1 week ago
  • XAML: what about events?


    MSMVPS.COMAuthority Authority: 658
    A friend of mine asked me about events and XAML: can we setup event handlers in XAML? And the answer is, yes, you can. Here’s a quick example of how you can handle the click event of a button: Button Click = "Button_Click" > Button > And yes, you must define the Button_Click method in your ...
    1 week ago
  • How to build types that can be consumed from XAML


    MSMVPS.COMAuthority Authority: 658
    Now that you know how to use custom types in XAML, you might be wondering if there are any thing you should keep in mind when designing new types that should be consumed from XAML. I’ve already said before that collection properties need to have a getter that return a valid instance of an object. But there’s ...
    1 week ago
  • Associating XAML namespaces to CLR namespaces


    MSMVPS.COMAuthority Authority: 658
    Take a look at the following (simple) XAML: UserControl x : Class = "SilverlightApplication1.MainPage" xmlns = "http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns : x = "http://schemas.microsoft.com/winfx/2006/xaml" > Canvas x : Name = "myCanvas" > ...
    1 week ago
  • XAML languages features


    MSMVPS.COMAuthority Authority: 658
    As I’ve said before, Silverlight supports only a subset of the existing XAML keywords you can use in WPF. Here’s the list of keywords you can use in your Silverlight: x:Class: you can apply this attribute to the root element of the XAML file (or object tree) that is going to be “compiled”. When you apply ...
    1 week ago
  • XAML and collections


    MSMVPS.COMAuthority Authority: 658
    We’ve already talked about several features related to XAML. In this post, we’ll keep going and we’ll see how to specify collections in XAML. There are two basic types of collections you can use in XAML: lists and dictionaries. Before going on, it’s important to understand that you’re not really creating new ...
    1 week ago
  • Type converter on Silverlight


    MSMVPS.COMAuthority Authority: 658
    Today we’ll talk a little bit about the role played by type converters in “transforming” XAML into C# objects. Here’s a quick example: Button xmlns = "http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns : x = "http://schemas.microsoft.com/winfx/2006/xaml" x : Name = ...
    1 week ago
  • Dew Drop – November 17, 2009


    Alvin Ashcraft's Morning DewAuthority Authority: 127
      Jump to: .NET / Visual Studio | Web Development | Design / Methodology / Testing | Silverlight / WPF | Podcasts / Screencasts / Videos | Community / Events | Database | SharePoint | Miscellaneous | More Link Collections | Book of the Day   .NET / Visual Studio Text Sharp – Visual ...
    1 week ago
  • XAML: using content properties


    MSMVPS.COMAuthority Authority: 658
    In the previous post , we’ve seen that we can use one of two approaches for setting the value of a property: we can use the property element or the attribute syntax (and, as we’ve seen in the previous post , you can’t use them both interchangeably). In this post , we’ll keep going and we’ll see how ...
    1 week ago
  • XAML and property elements


    MSMVPS.COMAuthority Authority: 658
    In the previous post , we’ve started looking at same basic XAML. At the time, we’ve defined a simple button by using the following syntax: Button xmlns = "http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns : x = "http://schemas.microsoft.com/winfx/2006/xaml" x : Name = ...
    1 week ago
  • Novell — Like Corel — Becomes a Microsoft Vassal, Promotes XAML-based Desktop


    fsdaily.com - Free Software News - Published newsAuthority Authority: 161
    Novells (and Mirosoft CodePlex) Miguel de Icaza issues a call to make more software with Microsoft XAML
    1 week ago
  • XAML 2009 Features: Named Object References


    Lester's WPF blogAuthority Authority: 512
    This is part of a series on New WPF\XAML Features In previous releases, if you needed to reference a named object, your XAML would look something like         Label Target = { Binding ElementName =firstNameBox } > _Target Label >         TextBox Name = ...
    1 week ago
  • XAML 2009 Features: XAML Event handling


    Lester's WPF blogAuthority Authority: 512
    [ This is part of a series on New WPF\XAML Features]     In previous releases, when loose XAML had events in it and was loaded it would crash. In V4, there are 2 options to avoid this crash. à On loading events are searched on the root object of the XAML file. Suppose you had the loose XAML like the ...
    2 weeks ago
  • XAML 2009 Features: Node Loop flexibility


    Lester's WPF blogAuthority Authority: 512
      [ This is part of a series on New WPF\XAML Features]     So by now most of you must have noticed the System.Xaml dll as part of your .NET 4 WPF projects. It’s a well componentized XAML stack that provides a lot of flexibility working with XAML. So at the core we a System.Xaml.XamlReader and ...
    2 weeks ago

Comments about xaml

Personal attacks are NOT allowed
Please read our comment policy