Hallo,
ich habe einen Listview, wo in einer Spalte Buttons sind. Wie ich das Event "abonniere" weiß ich, aber wie finde ich heraus, von welchem Item das kommt?
Hier mein XAML Code:
Und mein VB Code:
Danke für eure Antworten.
ich habe einen Listview, wo in einer Spalte Buttons sind. Wie ich das Event "abonniere" weiß ich, aber wie finde ich heraus, von welchem Item das kommt?
Hier mein XAML Code:
XML-Quellcode
- <Grid>
- <ListView x:Name="lst" Margin="10,10,10,24">
- <ListView.View>
- <GridView>
- <GridViewColumn >
- <GridViewColumn.CellTemplate >
- <DataTemplate >
- <StackPanel Orientation="Horizontal" >
- <Button Width="200" Height="30" Content="Aktionen" IsEnabled="True" Click="ColumClick" ></Button>
- </StackPanel>
- </DataTemplate>
- </GridViewColumn.CellTemplate>
- </GridViewColumn>
- </GridView>
- </ListView.View>
- </ListView>
- </Grid>
Und mein VB Code:
VB.NET-Quellcode
- Class MainWindow
- Private Sub ColumClick(sender As Object, e As RoutedEventArgs)
- End Sub
- Private Sub MainWindow_Loaded(sender As Object, e As RoutedEventArgs) Handles Me.Loaded
- lst.Items.Add(New Itm("Hallo Welt"))
- End Sub
- End Class
- Public Class Itm
- Private _txt As String
- Public Property Text As String
- Get
- Return _txt
- End Get
- Set(value As String)
- _txt = value
- End Set
- End Property
- Public Sub New(txt As String)
- _txt = txt
- End Sub
- End Class
Danke für eure Antworten.