XAML
files are where I spend the most of my coding time. Sometimes, they can get quite messy. In C#, we do have plenty of coding guidelines and standards, like:
- Microsoft Design Guidelines for developing Class Libraries,
- SubMain .NET Coding Guidelines,
- Philips C# Coding Standards
So, I’ve written down a list of guidelines I try to follow each time I create or edit a Xaml file.
I’ve set-up a Git repository - XAML Coding Guidelines with these rules. Do not hesitate to create an issue if you have an argument or a proposal for a new rule.
This is an extract of the rules at the writing time. Please go to the XAML Coding Guidelines repository to read the latest version.
Thanks to @julieknibbe, @carl_b_anderson, @LoicRebours and @ThomasNigro for reviewing these guidelines !
XAML Coding guidelines
How to contribute
You can open an issue on this project to raise an issue/argument about an existing rule, or to submit a new rule. For each submission, please at least produce the following items:
- Cause
- Rule description
- Justification
- How to fix violation
You can also add a code sample with violation and a code sample with violation fixed.
Want to translate the XAML coding guidelines in another language ?
Sure ! Please create an issue and we can discuss how we can work on creating multilingual version of these guidelines.
Guidelines principles
- Be easy to follow: Each rule must be explained as simple as possible. Any developer on his/her 1st day with Xaml must be able to follow these rules,
- Be as uncontroversial as possible: These rules must be out of debate. We’re not here to determine if it’s better to have a white-themed Visual Studio or a black-themed one (Pro-Tip: the correct answer is of course black). So, each rule must have a justification. An inspiration from StyleCop rules can be useful,
- Be usable for any Xaml-Based project: Windows Phone, WPF or Universal apps. It must apply for all of them. If a rule only apply to one platform, it should go under a platform-specific section.
Rules
XA1x. Code readability
XA1001 - Put one attribute per line
##### Cause Multiple attributes are declared on the same line.
Rule description
A violation of this rule occurs whenever an element has multiple attributes declared on the same line. For example:
xml
<Button x:Name="MyButton" Text="Hello world" Foreground="Blue" />
Quickly, this can leads to forgotten attributes, because the XAML code editor is often splitted in two with code view and design view. We could apply a specific rule, like “limit to 60 column caracters” or “limit to 2 attributes per line”. However, all these rules create special cases and interpretations that lead to difficulties in implementing this rule in our brain. Therefore, it’s more suitable to apply a simple rule anytime.
How to fix violation
To fix a violation of this rule, place only one attribute per line.
You can also use the default key combo Ctrl+K, Ctrl+F
to automatically format the current selection/document.
xml
<Button x:Name="MyButton"
Text="Hello world"
Foreground="Blue" />
XA1002 - Put the first attribute on the element line
Cause
When an element has at least one attribute defined, the first line contains only the element.
Rule description
A violation of this rule occurs whenether an element is the only thing declared on the line.
xml
<Button
x:Name="MyButton"
Text="Hello world"
Foreground="Blue" />
Declaring only the element without one of the attributes can leads to too many carriage return when the element is containing only one attribute. We can’t create an exception fo these one-attribute element declarations.
Moreover, adding the attributes on the subsequent leads can lead to a tab alignment which is under the element. This alignment is not relarly optimal for reading.
How to fix violation
Place the first attribute on the same line as the element opening.
xml
<Button x:Name="MyButton"
Text="Hello world"
Foreground="Blue" />
XA1003 - Within an element, order attributes alphabetically
##### Cause
Within an element tag, attributes are unordered.
xml
<Button Text="Hello world"
Foreground="Blue"
TextAlignment="Center"
/>
Rule description
A violation of this rule occurs whenether attributes within an element are not ordered alphabetically within an element declaration.
Current proposal and discussions There are discussions about this rule. Please see the related proposal.
How to fix violation
Order all attributes in alphabetical order, with respect of the related rules.
xml
<Button Foreground="Blue"
Text="Hello world"
TextAlignment="Center"
/>
Related rules
- XA1004: Put the x:Name or x:Key as the first attribute
- XA1005: Put the attached properties at the beginning of the element, eventually after the x:Name/x:Key
XA1004 - Put the x:Name or x:Key as the first attribute
##### Cause
Within an element tag, with the attribute x:Name
or x:Key
declared, this attribute is not the first declared.
xml
<Button Text="Hello world"
x:Name="ValidationButton"
TextAlignment="Center"
/>
Rule description
A violation of this rule occurs when an element declare multiple attributes and at least a x:Name
or x:Key
attribute, this attribute must be placed first.
The attributes are more important than any others because: - They identify the uniqueness of that control, - They identify that the control is used elsewere (storybard, code behind, binding, …).
Getting this attribute at top help to identify these controls and ensure any changes made to that control are done carefully.
Related rules
- XA1005: Put the attached properties at the beginning of the element, eventually after the x:Name/x:Key
- XA2001: Name elements with the
x:Name
attribute
How to fix violation
Place the x:Name
or x:Key
attribute first.
xml
<Button x:Name="ValidationButton"
Text="Hello world"
TextAlignment="Center"
/>
XA1005 - Put the attached properties at the beginning of the element, eventually after the x:Name/x:Key
##### Cause Attached properties are declared in any order within the element properties.
xml
<Button x:Name="ValidationButton"
Text="Hello world"
Grid.Column="2"
Grid.Row="0"
TextAlignment="Center"
/>
Rule description
A violation of this rule occurs when an element declares attached properties and their declaration is not at the top of all attributes declarations, except the x:Name
and x:Key
attributes.
Attached properties can change the appearence or behavior of your control. They can also surcharge some of the control properties. Declaring them at the top helps you identifiy these cases.
How to fix violation
Place all the attached properties, in an alphabetical order, first. If x:Name
and x:Key
attributes are declared, they are declared before any attached property declaration.
xml
<Button x:Name="ValidationButton"
Grid.Column="2"
Grid.Row="0"
Text="Hello world"
TextAlignment="Center"
/>
XA1006 - If an element has no content, use a self-closing element
##### Cause An element use a closing tag without defining child elements.
xml
<Button x:Name="ValidationButton"
Text="Hello world"
></Button>
Rule description
A violation of this rule occurs when an element does not declare child tags and use a specific closing tag. This leads to too much space waste.
Visual Studio and Blend XAML code editors can easily expand closing tags if needed while working on adding first child element, therefore that argument is not pertinent.
How to fix violation
Use a self-closing element instead.
xml
<Button x:Name="ValidationButton"
Text="Hello world"
/>
XA2x. Naming
XA2001 - Name elements with the x:Name
or x:Key
attribute
##### Cause Name or key attributes are used without the namespace prefix.
xml
<Button Name="ValidationButton"
Text="Hello world"
/>
Rule description
A violation of this rule occurs when the Name
or Key
attributes are declared without the x:
namespace prefix.
The attributes are more important than any others because: - They identify the uniqueness of that control, - They identify that the control is used elsewere (storybard, code behind, binding, …).
Getting this attribute more visible with the namespace prefix help to identify these controls and ensure any changes made to that control are done carefully.
How to fix violation
Always declare x:Name
or x:Key
with their x:
namespace prefix.
xml
<Button x:Name="ValidationButton"
Text="Hello world"
/>
XA2002 - Use Pascal Casing
This rule is under editing, waiting for comments.
XA2003 - Suffix XAML names with a type indication
##### Cause An element is named without a type indication.
xml
<Button x:Name="Checkout"
Text="Checkout"
/>
Rule description
A violation of this rule occurs when an element’s name does not includes any hint about the elment’s type at the end of it’s name.
Suffixing element’s name helps identify the page/control class members that are part of the UI and get a sens of what we can do with them.
How to fix violation
Suffix the element’s name with a type indication.
xml
<Button x:Name="CheckoutButton"
Text="Checkout"
/>
Related rules
- XA2004 Do not use a precise type indication suffix, unless it’s required
XA2004 - Do not use a precise type indication suffix, unless it’s required
##### Cause An element’s name indicate precise type, wheras no code is using any type-specific properties/methods.
xml
<StackPanel x:Name="ActionsStackPanel">
...
</StackPanel>
ActionsStackPanel.Opacity = 0;
Rule description
A violation of this rule occurs when an element’s name contains precise type indication and when no code is using specificities of this class, but only properties/methods defined on a base class/interface.
For a lot of use cases, you don’t need to know the exact element type. Let’s see it in an example:
xml
<StackPanel x:Name="ActionsPanel">
...
</StackPanel>
In that case, if you are just using ActionsPanel
to change the visibility, the name is correct. ActionsStackPanel
will convey too much details and prevents you to change at a later time the StackPanel
for a Grid
.
However, if you will change the Orientation
property somewhere, ActionsStackPanel
is an appropriate name, as you should be aware that you will use specific properties of the StackPanel
class.
How to fix violation
Remove precise indication suffix.
XA2005 - Name only node used in code-behind, element binding or animation
##### Cause
An element defines a name and nobody uses it.
xml
<StackPanel x:Name="ActionsPanel">
...
</StackPanel>
...
Rule description
A violation of this rule occurs when an element defines a x:Name
or x:Key
attribute and this name/key is not referenced/used in any code-behind code, element binding, or storyboard.
How to fix violation
Remove x:Name
or x:Key
attribute.
```xml
```
XA3x. Maintenability
XA3001 - Use the rule of 3 to decide if a value must be declared as a resource
##### Cause A property value is used at least three times.
Rule description
A violation of this rule occurs when a property value is used more than 2 times at different places. If so, this value will likely be used elsewere. For a greater maintenability, this property value must be declared as a resource.
How to fix violation
- Move the value to a resource,
- Replace all value usage by a StaticResource binding.
XA3002 - All the implicit styles must be placed at the top of the file and must be annotated with a comment
##### Cause An implicit style is declared elsewhere on a page/resource dictionary.
Rule description
A violation of this rule occurs when an implicit style is declared anywhere on a page/resource dictionary file, except at the top.
The implicit style must be used only when they apply to a whole page/app. If they apply only to a subset of a page/app, they must be declared as explicit styles.
As these styles have a broad impact, they must be declared first and commented properly to give them visibility.
How to fix violation
If the style is used throughout the file:
- Move the style declaration at the top of the Resources
element,
- Add a comment before the style declaration, stating the implicit nature.
If the style is used only on a portion of the file: - Make the style an explicit style, - Add the proper style binding in all involved controls.
XA4x. Resource files organization
The following rules are under editing.
XA4001 - Put the default styles within App.xaml, put the others styles in another file
#### XA4002 - Within a resource file, declare the elements in the following order
<!-- #Constants -->
<!-- #Colors -->
<!-- #Brushes -->
<!-- #Converters -->
<!-- #Objects (such as Data) or commands (for ribbon),etc. -->
<!-- #Styles -->
<!-- #DataTemplates -->
Guidelines authors
Please see repository contributors.
Work in progress
Please see opened issues.