수색…


EntryCell

EntryCell은 레이블과 항목의 기능을 결합한 셀입니다. EntryCell은 응용 프로그램 내에서 사용자로부터 데이터를 수집하기 위해 일부 기능을 구현할 때 유용 할 수 있습니다. 그것들은 TableView에 쉽게 배치 될 수 있고 간단한 형태로 취급 될 수 있습니다.

XAML

<EntryCell Label="Type Something"
Placeholder="Here"/>

암호

var entryCell = new EntryCell {
Label = "Type Something",
Placeholder = "Here"
};

여기에 이미지 설명을 입력하십시오.

SwitchCell

SwitchCell은 Label 및 on-off 스위치의 기능을 결합한 Cell입니다. SwitchCell은 기능 또는 사용자 기본 설정 또는 구성 옵션을 켜거나 끄는 데 유용 할 수 있습니다.

XAML

<SwitchCell Text="Switch It Up!" />

암호

var switchCell = new SwitchCell {
Text = "Switch It Up!"
};

여기에 이미지 설명을 입력하십시오.

TextCell

TextCell은 데이터를 표시하기위한 두 개의 별도 텍스트 영역이있는 셀입니다. TextCell은 일반적으로 TableView 및 ListView 컨트롤에서 정보 용도로 사용됩니다. 두 텍스트 영역은 세로로 정렬되어 셀 내의 공간을 최대화합니다. 이 유형의 셀은 일반적으로 계층 적 데이터를 표시하는데도 사용되므로 사용자가이 셀을 누르면 다른 페이지로 이동합니다.

XAML

<TextCell Text="I am primary"
TextColor="Red"
Detail="I am secondary"
DetailColor="Blue"/>

암호

var textCell = new TextCell {
Text = "I am primary",
TextColor = Color.Red,
Detail = "I am secondary",
DetailColor = Color.Blue
};

여기에 이미지 설명을 입력하십시오.

ImageCell

ImageCell은 정확히 들리는 소리입니다. 이미지 만 포함하는 간단한 셀입니다. 이 컨트롤은 일반적인 Image 컨트롤과 매우 유사하게 작동하지만 종소리와 휘슬이 훨씬 적습니다.

XAML

<ImageCell ImageSource="http://d2g29cya9iq7ip.cloudfront.net/content/imag
es/company/aboutus-video-bg.png?v=25072014072745")),
 Text="This is some text"
 Detail="This is some detail" />

암호

var imageCell = new ImageCell {
ImageSource = ImageSource.FromUri(new Uri("http://d2g29cya9iq7ip.clou
109
dfront.net/content/images/company/aboutus-videobg.png?v=25072014072745")),
 Text = "This is some text",
 Detail = "This is some detail"
};

여기에 이미지 설명을 입력하십시오.

ViewCell

ViewCell은 빈 슬레이트로 간주 할 수 있습니다. 원하는 방식대로 보이는 Cell을 만드는 것은 개인의 캔버스입니다. Layout 컨트롤과 함께 여러 다른 View 객체의 인스턴스로 구성 할 수도 있습니다. 당신은 당신의 상상력에 의해서만 제한됩니다. 그리고 아마 화면 크기.

XAML

<ViewCell>
<ViewCell.View>
<StackLayout>
<Button Text="My Button"/>

<Label Text="My Label"/>
<Entry Text="And some other stuff"/>
</StackLayout>
</ViewCell.View>
</ViewCell>

암호

var button = new Button { Text = "My Button" };
var label = new Label { Text = "My Label" };
var entry = new Entry { Text ="And some other stuff" };
var viewCell = new ViewCell {
View = new StackLayout {
Children = { button, label, entry }
}
};

여기에 이미지 설명을 입력하십시오.



Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow