列表框内的itemtemplate中的Selecteditem事件

时间:2012-02-15 06:18:40

标签: c# wpf silverlight windows-phone-7 xaml

我需要在listbox itemtemplate中选择更改事件。我的列表框由三个文本块和一个图像组成。我想只获取第三个文本块文本,当我选择第三个文本块时,文本块中的文本将显示为弹出窗口。

我使用可视化树来搜索文本块,但它采用第一个文本块的值而不是第三个文本块。我该怎么做才能获得第二和第三个文本块的值。我只有在单击列表框中的文本块而不是整个列表框项时才需要触发弹出窗口。

<ListBox Name="listBox1" Width="Auto" SelectionChanged="Listbox1_SelectionChanged"> 
    <ListBox.ItemTemplate>
        <DataTemplate>
            <StackPanel>
                <Image Height="165" HorizontalAlignment="Left" Margin="10,40,-400,0"  VerticalAlignment="Top" Width="175" Source="{Binding thumb}"/>
                <TextBlock Name="pagetext"  TextWrapping="Wrap"  VerticalAlignment="Top" HorizontalAlignment="Left" Margin="195,-135,-200,0" Text="{Binding page}" Foreground="#FF170101" />
                <TextBlock Name="titletext" Width="1000" TextWrapping="NoWrap"  VerticalAlignment="Top" HorizontalAlignment="Left" Margin="195,-167,-200,0" Text="{Binding title}" Foreground="#FF170101" />
                <TextBlock Name="text" Width="1000" TextWrapping="NoWrap"  VerticalAlignment="Top" HorizontalAlignment="Left" Margin="195,-167,-200,0" Text="{Binding title}" Foreground="#FF170101" />
            </StackPanel>
        </DataTemplate>
    </ListBox.ItemTemplate>   
</ListBox>  

2 个答案:

答案 0 :(得分:1)

使用TextBlock_MouseLeftButtonUp或TextBlock_Tap(单击文本块时会增加)

在此,

    private void TextBlock_MouseLeftButtonUp(object sender, MouseButtonEventArgs e)
    {
        TextBlock t = (TextBlock)sender;
        string s= t.Text;
    }

上面的字符串显示你想要的地方。

答案 1 :(得分:1)

您可能应该将问题TextBlock包裹在Button中,或者为其添加Hyperlink。两个支持命令并具有Click事件。 (要使Button隐身,您可以覆盖Template仅为简单的ContentPresenter

<Button>
    <Button.Template>
        <ControlTemplate TargetType="Button"><ContentPresenter/></ControlTemplate>
    </Button.Template>
    <TextBlock .../>
</Button>
<TextBlock>
    <!-- In SL you probably need a Run inside the Hyperlink and it may not be bindable -->
    <Hyperlink Text="{Binding title}" .../>
</TextBlock>