The syntax highlighting fails after the element <Setter>, e.g.

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                xmlns:mwt="clr-namespace:Microsoft.Windows.Themes;assembly=PresentationFramework.Aero"
                xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
    <!-- Add TargetType="{x:Type TextBox}" to make this style the default for all TextBoxes. -->
    <Style x:Key="WatermarkedTextBox" >
        <Setter Property="Control.Template" >

This valid XAML code. For the complete example see my answer to my question over at stackoverflow.com:

Help text in WPF TextBox that disppears after first input - Watermark, the XAML way

Interestingly here it is colored, but at stackoverflow.com the element name setter is still black. Following comments are black, too. Perhaps one of the tags XAML or WPF are switching the behavior.

Explicitly setting the language of the code to lang-xml or lang-xaml does not make a difference.

share|improve this question
2  
Really weird.. also added to the sandbox anyone with 100+ rep here can edit my post - looks like a bug indeed.. – Sha Wiz Dow Ard Apr 11 '11 at 14:10
Bump, because I'm having the same problem here: stackoverflow.com/a/10484994/529618 Can't get syntax highlighting to work properly for the life of me. – Alain May 7 '12 at 15:50
Same for me here. Setter just breaks highlighting. – Mic Mar 5 at 18:46

1 Answer

May be Google-code-prettify does not support XAML at all?

share|improve this answer
There is no issue matching XAML so it seams that XAML is is not known to http://code.google.com/p/google-code-prettify/. Switching to lang-xml does not help either. (@YOU: your link seams broken, because it does not work for me) – Christian Apr 11 '11 at 15:00
@Christian, changing the xml not working because XAML is not same as XML, and my link is a code search for keyword "XAML" in their project, its show nothing, thats correct because "XAML" is not in their code at all. – YOU Apr 11 '11 at 15:05
you are right. Your Link is working. Sorry! I have locked at the highlighting again and the highlighting is XML only. There is nothing specific to XAML. And this is IMHO fine. Even the XAML Editor (below the design view) in VS2010 is highlighting XML only. – Christian Apr 11 '11 at 15:13

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged