defaultvb.aspx.vb

来自「Telerik是很大的第三方软件制造商」· VB 代码 · 共 47 行

VB
47
字号

Imports System
Imports Telerik.QuickStart
Imports Telerik.WebControls


Namespace Telerik.TabStripExamplesVB.Functionality.ScrollingTabs
   
   '/ <summary>
   '/ Summary description for DefaultCS.
   '/ </summary>
   Public Class DefaultVB
      Inherits XhtmlPage
      Protected WithEvents ButtonsPosition As System.Web.UI.WebControls.DropDownList
      Protected WithEvents PerTabScrollingCheckBox As System.Web.UI.WebControls.CheckBox
      Protected RadTabStrip1 As Telerik.WebControls.RadTabStrip
      
      
      Private Sub Page_Load(sender As Object, e As EventArgs) Handles MyBase.Load
      End Sub 'Page_Load
      
      ' Put user code to initialize the page here
      Protected Overrides Sub OnInit(e As EventArgs)
         '
         ' CODEGEN: This call is required by the ASP.NET Web Form Designer.
         '
         InitializeComponent()
         MyBase.OnInit(e)
      End Sub 'OnInit
      
      
      '/ <summary>
      '/ Required method for Designer support - do not modify
      '/ the contents of this method with the code editor.
      '/ </summary>
      Private Sub InitializeComponent()
      End Sub 'InitializeComponent
      Private Sub ButtonsPosition_SelectedIndexChanged(sender As Object, e As System.EventArgs) Handles ButtonsPosition.SelectedIndexChanged
         RadTabStrip1.ScrollButtonsPosition = CType(ButtonsPosition.SelectedIndex, ScrollButtonsPosition)
      End Sub 'ButtonsPosition_SelectedIndexChanged
      
      
      Private Sub PerTabScrollingCheckBox_CheckedChanged(sender As Object, e As System.EventArgs) Handles PerTabScrollingCheckBox.CheckedChanged
         RadTabStrip1.PerTabScrolling = PerTabScrollingCheckBox.Checked
      End Sub 'PerTabScrollingCheckBox_CheckedChanged
   End Class 'DefaultVB
End Namespace 'Telerik.TabStripExamplesVB.Functionality.ScrollingTabs

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?