首页 > 其他 > 详细

StackPanel Binding

时间:2014-03-29 13:07:06      阅读:470      评论:0      收藏:0      [点我收藏+]

注意<i:Interaction>需要使用Blend的System.Windows.Interactivity.dll文件。

Xaml文件:

<StackPanel Width="200" Height="auto" MaxHeight="400" Grid.Row="1">
  <ItemsControl ItemsSource="{Binding MenuSet}">
  <ItemsControl.ItemsPanel>
    <ItemsPanelTemplate>
      <StackPanel HorizontalAlignment="Center" IsItemsHost="True"></StackPanel>
    </ItemsPanelTemplate>
  </ItemsControl.ItemsPanel>
  <ItemsControl.ItemTemplate>
    <DataTemplate>
      <TextBlock Text="{Binding Name}" Name="txtb">
        <i:Interaction.Triggers>
        <i:EventTrigger EventName="MouseLeftButtonDown">
    

          <i:InvokeCommandAction CommandParameter="{Binding ElementName=txtb}"
          Command="{Binding Path=DataContext.ModifyCommand,RelativeSource={RelativeSource Mode=FindAncestor,AncestorType={x:Type            StackPanel}}}">

        </i:InvokeCommandAction>

        </i:EventTrigger>
        </i:Interaction.Triggers>
      </TextBlock>
    </DataTemplate>
  </ItemsControl.ItemTemplate>
 </ItemsControl>
</StackPanel>

 

 

ViewModel: 注意DelegateCommand需要Prism中的Microsoft.Practices.Prism.dll。

bubuko.com,布布扣

bubuko.com,布布扣

bubuko.com,布布扣

bubuko.com,布布扣

Model:

bubuko.com,布布扣

StackPanel Binding,布布扣,bubuko.com

StackPanel Binding

原文:http://www.cnblogs.com/gnsds/p/3632259.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!