Mini Kabibi Habibi
using System;
using System.Collections;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;
using DevExpress.Tutorials;
namespace DevExpress.XtraGrid.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
}
protected override string ProductText {
get {
return Properties.Resources.AboutString;
}
}
protected override Image ProductImage {
get {
return DevExpress.Utils.ResourceImageHelper.CreateImageFromResources("DevExpress.XtraGrid.Images.XtraGrid.png", typeof(GridControl).Assembly); ;
}
}
protected override Image ProductImageLight {
get {
return DevExpress.Utils.ResourceImageHelper.CreateImageFromResources("DevExpress.XtraGrid.Images.XtraGrid_light.png", typeof(GridControl).Assembly); ;
}
}
protected override DevExpress.Utils.About.ProductKind ProductKind {
get {
return DevExpress.Utils.About.ProductKind.DXperienceWin;
}
}
}
}