如何获取自定义列表框中组件的内容

发布于 2024-11-27 04:30:59 字数 990 浏览 0 评论 0原文

如何获取自定义列表中点击的超链接按钮的内容。 XAML的代码贴在下面。

<ListBox Height="513" HorizontalAlignment="Left" Margin="9,88,0,0" Name="listBox1" VerticalAlignment="Top" Width="436">
            <ListBox.ItemTemplate>
                <DataTemplate>
                    <StackPanel Orientation="Horizontal" Height="132">
                        <TextBlock Text="{Binding ImageSource}" Height="73" Width="73" VerticalAlignment="Top" Margin="0,10,8,0"/> 
                        <StackPanel Width="370">
                            <HyperlinkButton Content="{Binding usrname}" Click="eventhandler" Foreground="#FFC8AB14" FontSize="24" />
                            <TextBlock Text="{Binding msg}" TextWrapping="Wrap" FontSize="20" />
                        </StackPanel>
                    </StackPanel> 
                </DataTemplate>
            </ListBox.ItemTemplate>
        </ListBox>

预先非常感谢

How to get the content of the hyperlink button clicked in the customized list. The code of XAML is posted below.

<ListBox Height="513" HorizontalAlignment="Left" Margin="9,88,0,0" Name="listBox1" VerticalAlignment="Top" Width="436">
            <ListBox.ItemTemplate>
                <DataTemplate>
                    <StackPanel Orientation="Horizontal" Height="132">
                        <TextBlock Text="{Binding ImageSource}" Height="73" Width="73" VerticalAlignment="Top" Margin="0,10,8,0"/> 
                        <StackPanel Width="370">
                            <HyperlinkButton Content="{Binding usrname}" Click="eventhandler" Foreground="#FFC8AB14" FontSize="24" />
                            <TextBlock Text="{Binding msg}" TextWrapping="Wrap" FontSize="20" />
                        </StackPanel>
                    </StackPanel> 
                </DataTemplate>
            </ListBox.ItemTemplate>
        </ListBox>

Thanks alot in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

躲猫猫 2024-12-04 04:30:59

您的事件处理程序将有一个源参数,它是对 HyperlinkBut​​ton 的引用。您可以按如下方式使用它:

public void eventhandler(object source, EventArgs e)
{
  HyperlinkButton button = source as HyperlinkButton;
  var foo = button.Content;
}

Your event handler will have a source argument which is a reference to the HyperlinkButton. You can use it as follows:

public void eventhandler(object source, EventArgs e)
{
  HyperlinkButton button = source as HyperlinkButton;
  var foo = button.Content;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文