Window x:Class="XamlTest.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:sys="clr-namespace:System;assembly=mscorlib" Title="Window1" Height="300" Width
<Window x:Class="XamlTest.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:sys="clr-namespace:System;assembly=mscorlib" Title="Window1" Height="300" Width="300"> <Grid> <ListBox> <ListBox.ItemsSource> <x:Array Type="sys:String"> <sys:String>zhangsan</sys:String> <sys:String>lisi</sys:String> <sys:String>wangwu</sys:String> </x:Array> </ListBox.ItemsSource> </ListBox> </Grid> </Window>