wsick / Fayde

Inspired by Silverlight; XAML engine using Javascript and rendering to the HTML5 Canvas.
MIT License
189 stars 27 forks source link

TextBox Background #191

Closed angelcalvasp closed 8 years ago

angelcalvasp commented 8 years ago

Hello everyone

when you set TextBox Background color you get a border of the color but the Textboxes Background color does not change don't know if I'm doing something wrong

heres the xaml

<Grid x:Name="LayoutRoot" >
        <Grid.DataContext>
            <vms:MainViewModel/>
        </Grid.DataContext>

        <TextBox FontSize="12" BorderThickness="0" Width="100" Height="25" Background="Red" />
    </Grid>

heres the output

untitled

BSick7 commented 8 years ago

This is a bug. The theme for a TextBox sets the inner background to {x:Null} which is not being obeyed. Working on a fix now.

BSick7 commented 8 years ago

Fixed in v0.19.2.

angelcalvasp commented 8 years ago

Woah that was fast