当前位置 : 主页 > 网页制作 > HTTP/TCP >

WPF x:Array的使用

来源:互联网 收集:自由互联 发布时间:2021-06-16
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>
网友评论