Librería PictureBox
Buenos días, estoy teniendo el siguiente problema.
Quiero realizar una clase/libreria pict_box con un comportamiento especifico, pero tengo el problema de que no me reconoce los tipos de dato size, point.
Imports System.Windows.Forms
Public Class Pict_Box
Inherits PictureBox
Private tamaño As Size
Private pto_primer As Point
Private tam_agrandar As Integer = 4
Private pto_agrand As Integer = tam_agrandar / 2
Public Property propTamaño() As Size
Get
Return tamaño
End Get
Set(ByVal value As Size)
tamaño = value
End Set
End Property
Public Property propLocation() As Point
Get
Return Location
End Get
Set(ByVal value As Point)
Location = value
End Set
End Property
Public Property propPtoPrimer() As Point
Get
Return pto_primer
End Get
Set(ByVal value As Point)
pto_primer = value
End Set
End Property
...
End Class
¿Cómo puedo hacer para que me reconozca estos tipos de datos?
Quiero realizar una clase/libreria pict_box con un comportamiento especifico, pero tengo el problema de que no me reconoce los tipos de dato size, point.
Imports System.Windows.Forms
Public Class Pict_Box
Inherits PictureBox
Private tamaño As Size
Private pto_primer As Point
Private tam_agrandar As Integer = 4
Private pto_agrand As Integer = tam_agrandar / 2
Public Property propTamaño() As Size
Get
Return tamaño
End Get
Set(ByVal value As Size)
tamaño = value
End Set
End Property
Public Property propLocation() As Point
Get
Return Location
End Get
Set(ByVal value As Point)
Location = value
End Set
End Property
Public Property propPtoPrimer() As Point
Get
Return pto_primer
End Get
Set(ByVal value As Point)
pto_primer = value
End Set
End Property
...
End Class
¿Cómo puedo hacer para que me reconozca estos tipos de datos?
1 Respuesta
Respuesta de Roberto Alvarado
1