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

📄 devicestatechangedeventargs.vb

📁 清华大学出版社出版的 移动应用开发宝典 张大威(2008)的附书源代码
💻 VB
字号:
Namespace Microsoft.WindowsMobile.Samples.Location

    Public Class DeviceStateChangedEventArgs
        Inherits EventArgs

        Private m_deviceState As GpsDeviceState


        Public Sub New(ByVal deviceState As GpsDeviceState)
            m_deviceState = deviceState
        End Sub

        Public ReadOnly Property DeviceState() As GpsDeviceState
            Get
                Return m_deviceState
            End Get
        End Property

    End Class


    Public Delegate Sub DeviceStateChangedEventHandler(ByVal sender As Object, ByVal args As DeviceStateChangedEventArgs)

End Namespace

⌨️ 快捷键说明

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