Mini Kabibi Habibi
using System;
using System.Collections;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;
using DevExpress.Tutorials;
namespace DevExpress.XtraVerticalGrid.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 Vertical Property Grid for WinForms by DevExpress offers you an entirely new way in which to develop highly elegant and functional user interfaces. Fully optimized for utmost flexibility, the XtraVerticalGrid will help you build stunning data entry forms with complete control over the information displayed on-screen.\r\n\r\nThe XtraVerticalGrid can be thought of as an inverted grid control - allowing you to display individual rows from a dataset or to display multiple dataset rows within the container. In addition, you can use it to build a Property Grid just like that found in the Visual Studio IDE.\r\n\r\nGive the XtraVerticalGrid 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.XtraVerticalGrid.Images.XtraVerticalGrid.png", typeof(VGridControl).Assembly); ;
}
}
protected override Image ProductImageLight {
get {
return DevExpress.Utils.ResourceImageHelper.CreateImageFromResources("DevExpress.XtraVerticalGrid.Images.XtraVerticalGrid_light.png", typeof(VGridControl).Assembly); ;
}
}
protected override DevExpress.Utils.About.ProductKind ProductKind {
get {
return DevExpress.Utils.About.ProductKind.DXperienceWin;
}
}
}
}