XamlCSS icon indicating copy to clipboard operation
XamlCSS copied to clipboard

Style Xaml applications with CSS

Results 22 XamlCSS issues
Sort by recently updated
recently updated
newest added

Still using net40 at work because Windows XP... And I like this project, so I made the adjustments so that it builds for net40. Also used new SDK format with...

Hi, I recently discovered your project and I really like it! I wondered if it wouldn't be cleaner to include the namespaces in the global one, this allows to use...

Placeholder-selectors are used in connection with `@extend` keyword. A placeholder-selector is not rendered to the final stylesheet but is referable by `@extend`.

enhancement
CSS-Parser

Media queries would allow creating adaptive layouts and ui-frameworks.

enhancement
CSS-Parser

enhancement
CSS-Parser

Support extending a native (non-css) style. ```scss @extend-native StyleResourceKey; ```

enhancement
CSS-Parser

Support operators to calculate values of properties.

enhancement
CSS-Parser

Support functions ```scss @function bind($property, $converter) { @if ($converter) { @return "{" + $property +", Converter=" + $converter + "}"; } @else { @return "{" + $property + "}"; }...

enhancement
CSS-Parser

Visual States, like Pressed or Hovered should be styleable with css Syntax could be aligned to html's syntax by using colons. ```css Button:MouseOver { Background: #999999; } ```

enhancement