-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCustomRadioGroup.vb
More file actions
29 lines (23 loc) · 837 Bytes
/
CustomRadioGroup.vb
File metadata and controls
29 lines (23 loc) · 837 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Imports DevExpress.XtraEditors
Imports System.ComponentModel
Namespace WindowsApplication3
Public Class CustomRadioGroup
Inherits RadioGroup
Shared Sub New()
RepositoryItemCustomRadioGroup.RegisterCustomEdit()
End Sub
Public Sub New()
End Sub
Public Overrides ReadOnly Property EditorTypeName As String
Get
Return RepositoryItemCustomRadioGroup.CustomEditName
End Get
End Property
<DesignerSerializationVisibility(DesignerSerializationVisibility.Content)>
Public Overloads ReadOnly Property Properties As RepositoryItemCustomRadioGroup
Get
Return TryCast(MyBase.Properties, RepositoryItemCustomRadioGroup)
End Get
End Property
End Class
End Namespace