Mini Kabibi Habibi

Current Path : C:/Users/Public/Documents/DXperience 13.1 Demos/WinForms/VB/SpellCheckerMainDemo/Modules/
Upload File :
Current File : C:/Users/Public/Documents/DXperience 13.1 Demos/WinForms/VB/SpellCheckerMainDemo/Modules/About.vb

Imports Microsoft.VisualBasic
Imports System
Imports System.Windows.Forms
Imports DevExpress.Tutorials
Imports DevExpress.Utils.About
Imports System.Drawing

Namespace DevExpress.XtraSpellChecker.Demos
	Partial Public Class About
		Inherits ucAboutPage
		Public Sub New()
			' This call is required by the Windows Form Designer.
			InitializeComponent()

			' TODO: Add any initialization after the InitializeComponent call
		End Sub

		#Region "Properies"
		Protected Overrides ReadOnly Property ProductText() As String
			Get
				Return "Microsoft Word� style WinForms spell checker with built-in Office� style error correction dialogs and ""check as you type"" support." & Constants.vbCrLf & Constants.vbCrLf & "The XtraSpellChecker provides you a straightforward way in which to add Microsoft� Office� style spell checking capabilities into your next Windows� application and offers you built in suggestion forms that replicate corresponding forms found in Microsoft Word� and Outlook�. Because these forms were built using our XtraEditors Library, they will seamlessly integrate into any application powered by Developer Express components."
			End Get
		End Property
        Protected Overrides ReadOnly Property ProductImage() As Image
            Get
                Return DevExpress.Utils.ResourceImageHelper.CreateImageFromResources("XtraSpellChecker.png", GetType(frmMain).Assembly)
            End Get
        End Property
        Protected Overrides ReadOnly Property ProductImageLight() As Image
            Get
                Return DevExpress.Utils.ResourceImageHelper.CreateImageFromResources("XtraSpellChecker_light.png", GetType(frmMain).Assembly)
            End Get
        End Property
		Protected Overrides ReadOnly Property ProductKind() As ProductKind
			Get
                Return ProductKind.DXperienceWin
			End Get
		End Property
		#End Region
	End Class
End Namespace