XamlCSS
XamlCSS copied to clipboard
Style Xaml applications with CSS
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`.
Media queries would allow creating adaptive layouts and ui-frameworks.
Support extending a native (non-css) style. ```scss @extend-native StyleResourceKey; ```
Support functions ```scss @function bind($property, $converter) { @if ($converter) { @return "{" + $property +", Converter=" + $converter + "}"; } @else { @return "{" + $property + "}"; }...
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; } ```