XamlCSS
XamlCSS copied to clipboard
Support Sass-like Functions
Support functions
@function bind($property, $converter) {
@if ($converter) {
@return "{" + $property +", Converter=" + $converter + "}";
}
@else {
@return "{" + $property + "}";
}
}
Button {
BackgroundColor: @bind(Color);
}