WPF通过<x:Array>直接为ListBox的ItemsSource赋值

时间:2015-12-17 15:55:41   收藏:0   阅读:880
技术分享
1 <!--其中sys前缀是在xmlns中引入了System的命名空间-->
2 <ListBox.ItemsSource>
3           <x:Array Type="{x:Type sys:String}">
4                   <sys:String>123</sys:String>
5                    <sys:String>123123</sys:String>
6                    <sys:String>111231</sys:String>
7                    <sys:String>1111</sys:String>
8            </x:Array>
9 </ListBox.ItemsSource>
View Code

 

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!