<Window x:Class="WpfApplication2.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1" Height="300" Width="300">
<Grid>
<Grid.Resources>
<XmlDataProvider x:Key="xmlPrv">
<x:XData>
<Colors xmlns="">
<Color>Red</Color>
<Color>Blue</Color>
<Color>Green</Color>
</Colors>
</x:XData>
</XmlDataProvider>
</Grid.Resources>
<ListBox Name="list01" FontSize="20" ItemsSource="{Binding Source={StaticResource xmlPrv},XPath=Colors/Color}" />
</Grid>
</Window>
댓글 영역