Mini Kabibi Habibi

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

using System.Drawing;
using DevExpress.Tutorials;
using DevExpress.Utils.About;

namespace DevExpress.XtraSpreadsheet.Demos {
    public partial class About : ucAboutPage {
		public About() {
			InitializeComponent();
		}

        #region Properies
        protected override string ProductText { 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."; } }
        protected override Image ProductImage { get { return DevExpress.Utils.ResourceImageHelper.CreateImageFromResources("XtraSpreadsheet.png", typeof(frmMain).Assembly); } }
        protected override Image ProductImageLight { get { return DevExpress.Utils.ResourceImageHelper.CreateImageFromResources("XtraSpreadsheet_light.png", typeof(frmMain).Assembly); } }
        protected override ProductKind ProductKind { get { return ProductKind.DXperienceWin; } }
        #endregion
	}
}