第553篇--MenuItems Binding

  <Menu HorizontalAlignment="Left" Margin="5,0,0,0" Background="Black" Height="20" ItemsSource="{Binding MenuList}">
            <Menu.ItemContainerStyle>
                <Style TargetType="MenuItem">
                    <Setter Property="Header" Value="{Binding MenuText}" />
                    <Setter Property="ItemsSource" Value="{Binding SubItems}"/>
                    <Setter Property="Command" Value="{Binding RunMenuCommand}" />
                    <Setter Property="Height" Value="20" />
                </Style>
            </Menu.ItemContainerStyle>
        </Menu>

 

posted @ 2013-05-24 10:34  Shanghai Jim Zhou  阅读(239)  评论(0编辑  收藏  举报