WPF Demo3
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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>
运行效果如下:
以上是关于WPF Demo3的主要内容,如果未能解决你的问题,请参考以下文章
java类名直接访问静态变量为啥不通过,提示Demo3.java:11: 不是语句