获取“名字”来自子控件的父面板

发布于 2024-12-09 19:10:52 字数 82 浏览 0 评论 0原文

我在两个堆栈面板中有一组静态按钮和一组动态按钮。我想获取单击的按钮的堆栈面板的名称。我不想要类型,我想要具体的名称。有没有办法在 C# 中做到这一点?

I have one static, and one dynamic set of buttons in two stack panels. I want to get the name of the stack panel of the button clicked. I don't want the type, I want the specific name. Is there a way to do that in C#??

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

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

发布评论

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

评论(1

给不了的爱 2024-12-16 19:10:52

试试这个:

private ButtonClick(object sender)
{
    string parent_name = ((Button)sender).Parent.Name;
}

或者对于 WPF:

private ButtonClick(object sender, RoutedEventArgs e)
{
    FrameworkElement parent=(FrameworkElement)((Button)sender).Parent;
    string parent_name = parent.Name;            
}

Try this:

private ButtonClick(object sender)
{
    string parent_name = ((Button)sender).Parent.Name;
}

or for WPF:

private ButtonClick(object sender, RoutedEventArgs e)
{
    FrameworkElement parent=(FrameworkElement)((Button)sender).Parent;
    string parent_name = parent.Name;            
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文