<!--
# Copyright (C) 2000-2008, (^.^) piyo-piyo Tamago-Club
#
# History: WPF examples
# 2008/01/25, IronPython 1.1.1 (download)
# 2008/08/22, IronPython 1.1.2 (download)
# 2008/03/16, ver.2.0, WPF
# 2008/00/00, ver.2.1, IronPython 1.1.2
<DockPanel LastChildFill="True"
xmlns="
http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="
http://schemas.microsoft.com/winfx/2006/sparkle">
<GridViewColumn Header="Color Name"
DisplayMemberBinding="{Binding Path=name}" Width="90" />
<GridViewColumn Header="Red"
DisplayMemberBinding="{Binding Path=red}" Width="45" />
<GridViewColumn Header="Green"
DisplayMemberBinding="{Binding Path=green}" Width="45" />
<GridViewColumn Header="Blue"
DisplayMemberBinding="{Binding Path=blue}" Width="45" />