Mini Kabibi Habibi
using System;
using System.Drawing;
using System.Reflection;
using DevExpress.Utils.About;
using DevExpress.Tutorials;
using DevExpress.Utils;
namespace DashboardMainDemo.Modules {
public partial class About : ucAboutPage {
protected override string ProductText {
get {
return @"DevExpress Dashboard is a new solution that incorporates end-user dashboard design and cross-platform presentation capabilities - both with no coding required.
The Dashboard Designer provides an extremely intuitive UI that facilitates data binding, shaping, and layout design. Most of these usually puzzling tasks have now been made as simple as mere drag-and-drop. All this enables users to start creating professional dashboards right away.
Dashboards designed with DevExpress Dashboard can be easily delivered across platforms. This Suite provides presentation controls for both Windows Forms and ASP.NET. So, whatever they have at their hand - a desktop computer or an iPad - decision makers will always get all data they need to make the right choice.";
}
}
protected override Image ProductImage {
get { return ResourceImageHelper.CreateImageFromResourcesEx("DashboardMainDemo.Images.Logo.png", typeof(frmMain).Assembly); }
}
protected override Image ProductImageLight {
get { return ResourceImageHelper.CreateImageFromResourcesEx("DashboardMainDemo.Images.Logo-Light.png", typeof(frmMain).Assembly); }
}
protected override ProductKind ProductKind { get { return ProductKind.Dashboard; } }
public About() {
InitializeComponent();
}
}
}