⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 chartevents.vb

📁 使用Access数据库演示的任务分配管理程序 一个使用ADO.NET基于Microsoft Access数据库演示的任务分配管理的程序
💻 VB
字号:
' Event argument that is passed to the container. Event is 
' sent when the chart is clicked and the argument contains 
' the index of the chart item that was clicked.

Public Delegate Sub ClickItemEventHandler(ByVal sender As Object, ByVal e As ClickItemEventArgs)

Public Class ClickItemEventArgs
    Inherits EventArgs

    ' Internal fields. Chart item that was clicked.
    Private m_SelItem As Integer

    ' Constructor.		
    Public Sub New(ByVal item As Integer)
        SelectedItem = item
    End Sub

    ' Properties.
    Public Property SelectedItem() As Integer
        Get
            Return m_SelItem
        End Get
        Set(ByVal Value As Integer)
            m_SelItem = Value
        End Set
    End Property
End Class

⌨️ 快捷键说明

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