상세 컨텐츠

본문 제목

[WPF] XML Biniding2

WPF

by happynuri 2008. 2. 26. 14:25

본문

<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>

관련글 더보기

댓글 영역