Mini Kabibi Habibi
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
}
}