Update a test page.

This commit is contained in:
Vasil Chimev
2015-08-20 17:30:48 +03:00
parent 77969b14a7
commit 00cb00e13c
5 changed files with 19 additions and 9 deletions

View File

@@ -0,0 +1,6 @@
<Page>
<StackLayout>
<Button text="ButtonCircle" style="width:200;height:200;color:white;border-radius:100;border-width:2;border-color:red;background-color:blue" />
<Button text="ButtonImage" style="width:200;height:200;color:white;border-radius:100;border-width:2;border-color:blue;background-image:url('~/pages/red.png')" />
</StackLayout>
</Page>

View File

@@ -48,4 +48,14 @@
border-radius: 30;
border-width: 5;
border-color: gray;
}
style {
width: 200;
height: 200;
color: white;
border-width: 2;
border-color: blue;
border-radius: 100;
background-image: url('~/pages/red.png');
}

View File

@@ -1,6 +0,0 @@
<Page>
<StackLayout>
<Button text="ButtonCircle" id="btnCircle" style="width:200;height:200;color:white;border-width:2;border-color:red;border-radius:100;background-color:blue" />
<Button text="ButtonImage" id="btnImage" style="width:200;height:200;color:white;border-width:2;border-color:blue;border-radius:100;background-image:url('~/pages/red.png')" />
</StackLayout>
</Page>