我有一些ListBoxItems,其中包含一个图像和一个文本框,点击时会突出显示。我弄清楚的是如何使整个列表框项目双击事件触发到超链接。有人可以帮助我吗?
我一直在看这个,但它似乎是整个列表框而不是项目 - http://jarloo.com/code/wpf/wpf-listbox-doubleclick/。
这是我的一个listboxitems:
<ListBoxItem >
<Grid HorizontalAlignment="Stretch">
<Grid Margin="5">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition/>
</Grid.RowDefinitions>
<Border Grid.RowSpan="2"
BorderBrush="LightGray" BorderThickness="0"
Margin="0,0,5,0">
<Image Source="/IDE;component/Resources/Images/test1.ico" Height="64" Width="64" />
</Border>
<TextBlock Text="Google.com"
FontWeight="Bold"
Grid.Column="2"
Margin="0,0,0,5"/>
<TextBlock TextWrapping="Wrap" Text="To learn more information doubleclick this box to open the website."
Grid.Column="2" Grid.Row="2"/>
</Grid>
<Line X1="0" Y1="0" X2="0" Y2="0" Stretch="Uniform"
Stroke="DarkGray"
VerticalAlignment="Bottom"/>
</Grid>
</ListBoxItem>
答案 0 :(得分:1)
您似乎在指定具体项目而不是从ItemsSource生成它们,您指定的链接不适用。我不太明白你引用超链接时的意思,因为我在你的代码中看不到任何内容。
要处理正常的双击,您可以在ListBoxItem本身中分配一个处理程序:
<ListBoxItem MouseDoubleClick="ListBoxItem_DoubleClick">
...
这就是你想要的吗?