Mini Kabibi Habibi
using System;
using System.Collections;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;
using DevExpress.Tutorials;
namespace DevExpress.XtraTreeList.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 "The XtraTreeList Suite is a comprehensive WinForms TreeView and ListView control - a multi-purpose data visualization system that can display information as a TREE, a GRID, or a combination of both - in either data-bound or unbound mode. This unique synergy between a traditional grid and a traditional TreeView allows you to create cutting-edge and visually appealing application interfaces for your end-users.\r\n\r\nGive the XtraTreeList Suite a try and see for yourself - if it is not the best and most comprehensive product library of its kind, return it to us within the first 60 days from purchase for an UNCONDITIONAL no questions asked refund!";
}
}
protected override Image ProductImage {
get {
return DevExpress.Utils.ResourceImageHelper.CreateImageFromResources("DevExpress.XtraTreeList.Images.XtraTreeList.png", typeof(TreeList).Assembly); ;
}
}
protected override Image ProductImageLight {
get {
return DevExpress.Utils.ResourceImageHelper.CreateImageFromResources("DevExpress.XtraTreeList.Images.XtraTreeList_light.png", typeof(TreeList).Assembly); ;
}
}
protected override DevExpress.Utils.About.ProductKind ProductKind {
get {
return DevExpress.Utils.About.ProductKind.DXperienceWin;
}
}
}
}