달력

52024  이전 다음

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
반응형


http://xamaringuyhome.blogspot.kr/2017/10/xamarin-forms-profile-ui-designtutorial.html
이분 소스를 따라 했는데 우리형보단 트와이스라...^^;

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             xmlns:local="clr-namespace:App2ProfileUIDesign"
             x:Class="App2ProfileUIDesign.MainPage"
             BackgroundColor="Black">
 
    <ContentPage.Content>
        <StackLayout>
            <Image Aspect="AspectFill" Source="https://www.twicenest.com/files/attach/images/223355/134/523/003/7e784764f79b2cba9e881c6c5d7204e8.jpg"/>
            <BoxView HeightRequest="1" BackgroundColor="#ffffff"/>
 
            <StackLayout Padding="15">
                <Label Text="TWICE" 
                       FontAttributes="Bold" 
                       TextColor="White"/>
                <Label Text="TWICE는 JYP 엔터테인먼트에서 miss A 이후 5년 만에 선보인 9인조 다국적 걸그룹으로, 팀명의 의미는 눈으로 한 번, 귀로 한 번해서 두 번 감동을 준다는 뜻이다."
                       TextColor="White" />
            </StackLayout>
 
            <BoxView HeightRequest="1" BackgroundColor="#ffffff"/>
            <StackLayout Orientation="Horizontal" 
                         VerticalOptions="Center" 
                         HorizontalOptions="Center"/>
            <Button Text="NextPage"/>
        </StackLayout>
    </ContentPage.Content>
 
</ContentPage>
 
cs


'프로그래밍 > xamarin' 카테고리의 다른 글

[xamarin]어플 닫기 전에 물어보고 닫기  (0) 2018.06.24
[xamarin]Lottie Animation  (0) 2018.06.10
[xamarin]CustomRenderers  (0) 2018.06.03
[xamarin]Alert Dialog  (0) 2018.05.27
[xamarin]로그인화면  (0) 2018.05.13
Posted by 유령회사
|