Quantcast
Channel: C#タグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 9743

眺めて覚える C# Xamarin Forms(10) ListView

$
0
0

スマートフォンで一番使うリストビューを解説します。

空のプロジェクトを作成します。

image.png

モバイルアプリを選択します。

image.png

プロジェクト名を指定して作成

image.png

空白を選択してOK

image.png

MainPage.xamlを開いて StackLayoutの部分を変更します。

MainPage.xaml
<?xml version="1.0" encoding="utf-8" ?><ContentPagexmlns="http://xamarin.com/schemas/2014/forms"xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"xmlns:d="http://xamarin.com/schemas/2014/forms/design"xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"mc:Ignorable="d"x:Class="Xamarin_10.MainPage"><StackLayoutMargin="20,35,20,20"><ListView><ListView.ItemsSource><x:ArrayType="{x:Type x:String}"><x:String>東京</x:String><x:String>神田</x:String><x:String>お茶の水</x:String><x:String>四谷</x:String><x:String>新宿</x:String><x:String>中野</x:String><x:String>荻窪</x:String></x:Array></ListView.ItemsSource></ListView></StackLayout></ContentPage>

実行すると

image.png


Viewing all articles
Browse latest Browse all 9743

Trending Articles