Mini Kabibi Habibi
using System;
using System.Windows.Forms;
using DevExpress.Tutorials;
using DevExpress.Utils.About;
using System.Drawing;
namespace DevExpress.XtraSpellChecker.Demos {
public partial class About : ucAboutPage {
public About() {
// This call is required by the Windows Form Designer.
InitializeComponent();
// TODO: Add any initialization after the InitializeComponent call
}
#region Properies
protected override string ProductText { get { return "Microsoft Word� style WinForms spell checker with built-in Office� style error correction dialogs and \"check as you type\" support.\r\n\r\nThe 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."; } }
protected override Image ProductImage { get { return DevExpress.Utils.ResourceImageHelper.CreateImageFromResources("DevExpress.XtraSpellChecker.Demos.Images.XtraSpellChecker.png", typeof(frmMain).Assembly); } }
protected override Image ProductImageLight { get { return DevExpress.Utils.ResourceImageHelper.CreateImageFromResources("DevExpress.XtraSpellChecker.Demos.Images.XtraSpellChecker_light.png", typeof(frmMain).Assembly); } }
protected override ProductKind ProductKind { get { return ProductKind.DXperienceWin; } }
#endregion
}
}