WPF Demo3

<Window x:Class="Demo3.MainWindow"
        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="MainWindow" Height="162" Width="525">

    <!--x:Class="Demo3.MainWindow" ——入口-->
    <!--使用字符串资源,需要添加引用:xmlns:sys="clr-namespace:System;assembly=mscorlib"-->
    <Grid>
        <ListBox  Height="Auto" FontStyle="Italic" SelectionMode="Single">
            <ListBox.ItemsSource>
                <!--添加资源-->
                <x:Array Type="sys:String">
                    <sys:String>kunkun</sys:String>
                    <sys:String>yangyang</sys:String>
                </x:Array>
            </ListBox.ItemsSource>
        </ListBox>
    </Grid>
</Window>

运行效果如下:

原文地址:https://www.cnblogs.com/YYkun/p/6866428.html