Mini Kabibi Habibi

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

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;
            }
        }
	}
}