Style
# Style Syntax
The basic syntax of a style is as follows:
Attention
Acss Children must be placed at the end of the style. Subsequent Setters will not take effect.
Selector Syntax
The syntax of Acss's Selector is exactly the same as in Avalonia. The only difference is that you don't need to add the "^" symbol in front of the Selector of a sub-style.
Setter Syntax
The form in which the Setter is placed in the style has already been shown. The other features are described separately here.
The whitespace before and after the colon ":" in a Setter does not affect the effect of the statement.
The ";" character at the end of a Setter is essential, but is not required for collection properties, or can be omitted from the last Setter.
A Setter's Property is case sensitive.
A Setter's Value can use dynamic resources.
The parsing syntax of a Setter's Value is consistent with the parsing syntax of resource values.
A Setter's Value can use static instances, using the "@" symbol to mark static types and then accessing static properties directly, for example:
Note that only types registered with the type resolution service can be accessed. For example, the TextDecorations in the above code are registered with the Acss built-in type parser and you can use them directly.
There is a special syntax for defining values for Setter's collection types. For example, for the Transitions property, it is a collection.
Currently there is no support for properties of collection types other than Transitions. We will consider adding support later.
Classification of styles
Acss styles still end up generating Avalonia styles to produce the effect. But logically we still categorise it.
1. Theme sub-styles
A theme sub-style is a sub-style defined for a type of Control that, when parsed into an Avalonia style, looks up the ControlTheme for that type of Control in the current environment and Application scope and adds the style to that ControlTheme as a sub-style.
This is not unlike when you define a sub-style directly in the ControlTheme.
The theme sub-style Selector needs to be preceded by a "^" symbol, which indicates that the style is a theme sub-style, not a normal style.
NOTE
The "^" symbol indicates a thematic sub-style, which is not the same as it is used in Avalonia, where it indicates a nested sub-style.
In the following three pieces of code, in practical terms, Code #1 + Code #2 = Code #3.
NOTE
Conceptually and practically, theme sub-styles take effect to the extent that the first ControlTheme searched for can be applied, not to the extent that the Acss file in which the style is located can be applied.
2. Normal Style
Normal styles are Acss styles without the "^" symbol, which are parsed as Avalonia styles and put into Styles in IAcssFile. Note that IAcssFile inherits the Avalonia interface IStyle, and IAcssFile is loaded by IAcssLoadr into the Owner of the Styles type passed in during loading.
NOTE
The scope of effect of a normal style is the scope of effect of the IAcssFile, and the scope of effect of the IAcssFile is the scope of effect of its owner.
An example of the normal style is shown below:
3. Logic sub-style (beta)
Logical sub-styles are not currently supported by Avalonia, they mean that the style will be placed in the Styles of the Target of the Selector of the parent style.
For example, if the Target of "/template/Grid#PART_MonthView" is a Grid, the logical child style will be placed into the Styles of the Grid as a normal child style.
NOTE
Logic sub-style currently belongs to the experimental function, temporarily unstable, not recommended.
Logic sub-style of the Selector before the need to add the ">" symbol, code examples:
Style inheritance
Unlike Avalonia where styles can only BaseOn a base style, Acss styles can't directly inherit styles, but they can inherit multiple style templates.
1. Style templates
An abstract template is a style template that does not specify a Selector. Abstract templates do not specify a specific type, so they cannot be parsed into specific Avalonia styles.
For example, the following defines two style templates with ".ctrl" and ".border" as their Key.
Style templates can inherit style templates.
2. File Import
Inheriting a style template requires that the style template is available in the current IAcssFile environment, which can be achieved in two ways.
Define the template in the current IAcssFile. Note that it must be defined at the outermost level, not in any of Style's Children.
Define the template in a separate file and import it at the top of the file using the base keyword. The method is as follows:
3. Inheritance templates
Acss styles can inherit from multiple templates.
Use the template:
Last updated
Was this helpful?