如何根据所选选项卡显示不同的弹出窗口

发布于 2024-11-07 16:24:45 字数 139 浏览 0 评论 0原文

我正在创建一个使用选项卡式视图的应用程序。目前,我可以双击数据网格中的一行,然后会出现一个新窗口,我可以在其中编辑所选行的内容。我现在有一个选项卡需要与其他选项卡不同的弹出窗口。如何使一个选项卡在双击时显示与其他选项卡不同的弹出窗口?如果您需要更多信息,请告诉我。

I am creating an app that is using a tabbed view. I currently am able to double click on a line in the datagrid and a new window appears where I am able to edit contents of the selected line. I now have one tab that will need a different pop up window than the rest of the tabs. How do make the one tab show a different popup window than the rest of the tabs when double clicked? Let me know if you need more info.

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

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

发布评论

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

评论(1

落在眉间の轻吻 2024-11-14 16:24:45

检查 TabControl.SelectedTab 属性查看当前可见的选项卡是否是您想要的选项卡:

OnClick()
{
  if (this.tabControl.SelectedTab == this.secondTab)
  {
    // Show different popup here
  }
  else
  {
    // Show common popup here
  }
}

Check the TabControl.SelectedTab property to see if currently visible tab is the one you want:

OnClick()
{
  if (this.tabControl.SelectedTab == this.secondTab)
  {
    // Show different popup here
  }
  else
  {
    // Show common popup here
  }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文