Mini Kabibi Habibi

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

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

Namespace DevExpress.XtraSpreadsheet.Demos
	Partial Public Class About
		Inherits ucAboutPage
		Public Sub New()
			InitializeComponent()
		End Sub

		#Region "Properies"
		Protected Overrides ReadOnly Property ProductText() As String
			Get
				Return "The XtraSpreadsheet for WinForms provides end-users with the ability to create and edit files in Microsoft� Excel� format. It delivers a comprehensive API allowing you to create, manage, print and convert spreadsheet files. Your application would not require Microsoft Excel to be installed on your computer to accomplish these tasks."
			End Get
		End Property
		Protected Overrides ReadOnly Property ProductImage() As Image
			Get
				Return DevExpress.Utils.ResourceImageHelper.CreateImageFromResources("XtraSpreadsheet.png", GetType(frmMain).Assembly)
			End Get
		End Property
		Protected Overrides ReadOnly Property ProductImageLight() As Image
			Get
				Return DevExpress.Utils.ResourceImageHelper.CreateImageFromResources("XtraSpreadsheet_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