Click here to Skip to main content
15,884,388 members
Articles / Desktop Programming / Windows Forms

i00 Spell Check and Control Extensions - No Third Party Components Required!

Rate me:
Please Sign up or sign in to vote.
4.95/5 (117 votes)
11 Jan 2014Ms-PL16 min read 1.3M   21   266  
Simple to use, open source Spell Checker for .NET
'i00 EnumUITypeEditor
'©i00 Productions All rights reserved
'Created by Kris Bennett
'----------------------------------------------------------------------------------------------------
'All property in this file is and remains the property of i00 Productions, regardless of its usage,
'unless stated otherwise in writing from i00 Productions.
'
'i00 is not and shall not be held accountable for any damages directly or indirectly caused by the
'use or miss-use of this product.  This product is only a component and thus is intended to be used 
'as part of other software, it is not a complete software package, thus i00 Productions is not 
'responsible for any legal ramifications that software using this product breaches.

Friend Class EnumUITypeEditor
    Inherits System.Drawing.Design.UITypeEditor

    Private WithEvents PropertyEditorListView As PropertyEditorListView

    Dim editor As System.Drawing.Design.UITypeEditor

    Public Sub New(ByVal editor As System.Drawing.Design.UITypeEditor)
        Me.editor = editor
    End Sub

    Public ListOverride As List(Of Object)

    Public Overrides Function EditValue(ByVal context As System.ComponentModel.ITypeDescriptorContext, ByVal provider As System.IServiceProvider, ByVal value As Object) As Object
        If TypeOf value Is [Enum] Then

            Dim edSvc As System.Windows.Forms.Design.IWindowsFormsEditorService = DirectCast(provider.GetService(GetType(System.Windows.Forms.Design.IWindowsFormsEditorService)), System.Windows.Forms.Design.IWindowsFormsEditorService)
            If edSvc IsNot Nothing Then
                PropertyEditorListView = New PropertyEditorListView(edSvc, editor)

                PropertyEditorListView.EnumValue = DirectCast(value, [Enum])
                edSvc.DropDownControl(PropertyEditorListView)

                Return PropertyEditorListView.EnumValue
            End If
        ElseIf ListOverride IsNot Nothing Then
            Dim edSvc As System.Windows.Forms.Design.IWindowsFormsEditorService = DirectCast(provider.GetService(GetType(System.Windows.Forms.Design.IWindowsFormsEditorService)), System.Windows.Forms.Design.IWindowsFormsEditorService)
            If edSvc IsNot Nothing Then
                PropertyEditorListView = New PropertyEditorListView(edSvc, editor)

                PropertyEditorListView.Items.AddRange(ListOverride.ToArray)
                edSvc.DropDownControl(PropertyEditorListView)

                Return PropertyEditorListView.EnumValue
            End If
        End If
        Return Nothing
        'Return MyBase.EditValue(context, provider, value)
    End Function

    Public Overrides Function GetEditStyle(ByVal context As System.ComponentModel.ITypeDescriptorContext) As System.Drawing.Design.UITypeEditorEditStyle
        Return Drawing.Design.UITypeEditorEditStyle.DropDown
    End Function

    Public Overrides ReadOnly Property IsDropDownResizable() As Boolean
        Get
            Return True
        End Get
    End Property

End Class

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Microsoft Public License (Ms-PL)


Written By
i00
Software Developer (Senior) i00 Productions
Australia Australia
I hope you enjoy my code. It's yours to use for free, but if you do wish to say thank you then a donation is always appreciated.
You can donate here.

Comments and Discussions