■ x:Array 엘리먼트를 사용해 배열을 만드는 방법을 보여준다.
▶ 예제 코드 (XAML)
1 2 3 4 5 6 7 8 9 10 11 |
<ListBox xmlns:s="clr-namespace:System;assembly=mscorlib"> <ListBox.ItemsSource> <x:Array Type="s:String"> <s:String>Hello</s:String> <s:String>World</s:String> </x:Array> </ListBox.ItemsSource> </ListBox> |