ASP.NET 中选项卡索引的基类

发布于 2024-08-03 12:40:32 字数 298 浏览 4 评论 0原文

我正在尝试创建一种很好的通用方法来设置 ASP.NET 应用程序页面中许多元素的选项卡索引(使用 VB.NET)。因此,我想知道是否有一个基类来控制继承自的 TabIndex 属性的实现,以便我可以生成以下代码:

Public Sub GenerateTabIndex(order as List(Of TabIndexBaseClass))
   ...
   Blah Blah Blah code...
End Sub

感谢您的帮助。

注意我无法使用 View ->选项卡顺序;很遗憾。

I'm trying to create a nice generic way of setting the tab index on many elements in a page of an ASP.NET app (using VB.NET). As a result I was wondering if there was a base class that controls implementing the TabIndex property inherited from so I could generate the following code:

Public Sub GenerateTabIndex(order as List(Of TabIndexBaseClass))
   ...
   Blah Blah Blah code...
End Sub

Thanks for the help.

N.B. I cannot use View -> Tab Order; unfortunately.

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

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

发布评论

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

评论(1

梦醒时光 2024-08-10 12:40:32

因为我刚刚发现它,所以我要在这里回答我自己的问题。

使用WebControl类;它内置了 TabIndex 方法。我试图使用 Control 类。

I'm going to answer my own question here since I just found it.

Use the WebControl class; it has the TabIndex Method build in. I was attempting to use the Control class.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文