Tôi cần một số trợ giúp nhanh chóng là công cụ chặn đường cho tôi ngay bây giờ. Tôi có Button
trong ItemsControl
và tôi cần thực hiện một số tác vụ trên Nhấp chuột vào nút. Tôi đã thử thêm Command
vào Button
trong I temsControl
DataTemplate
nhưng không hoạt động. Bất cứ ai có thể đề nghị làm thế nào để tiến xa hơn.ItemsControl button click command
<UserControl.Resources>
<DataTemplate x:key="mytask">
<TextBox Grid.Row="5" Grid.Column="2" Text="{Binding Path=PriorNote}" Grid.ColumnSpan="7" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="0,5" Width="505" Foreground="Black"/>
<StatusBarItem Grid.Row="2" Grid.Column="8" Margin="8,7,7,8" Grid.RowSpan="2">
<Button x:Name="DetailsButton" Command="{Binding CommandDetailsButtonClick}">
</DataTemplate>
</UserControl.Resources>
<Grid>
<ItemsControl Grid.Row="1"
ItemsSource="{Binding ListStpRules}"
ItemTemplate="{StaticResource myTaskTemplate}" Background="Black"
AlternationCount="2" >
</ItemsControl>
</Grid>
và trong ViewModel Tôi đã triển khai mã cho Command. Và nó không hoạt động. Xin gợi ý cho bất kỳ giải pháp cho tôi để tiến hành thêm
Bạn có thể cung cấp mã hơn ??? –