Mini Kabibi Habibi
Imports Microsoft.VisualBasic
Imports System
Imports System.Drawing
Imports System.Reflection
Imports DevExpress.Utils.About
Imports DevExpress.Tutorials
Imports DevExpress.Utils
Namespace DashboardMainDemo.Modules
Partial Public Class About
Inherits ucAboutPage
Protected Overrides ReadOnly Property ProductText() As String
Get
Return "DevExpress Dashboard is a new solution that incorporates end-user dashboard design and cross-platform presentation capabilities - both with no coding required." & ControlChars.CrLf & ControlChars.CrLf & "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." & ControlChars.CrLf & ControlChars.CrLf & "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."
End Get
End Property
Protected Overrides ReadOnly Property ProductImage() As Image
Get
Return ResourceImageHelper.CreateImageFromResourcesEx("DashboardMainDemo.Images.Logo.png", GetType(frmMain).Assembly)
End Get
End Property
Protected Overrides ReadOnly Property ProductImageLight() As Image
Get
Return ResourceImageHelper.CreateImageFromResourcesEx("DashboardMainDemo.Images.Logo-Light.png", GetType(frmMain).Assembly)
End Get
End Property
Protected Overrides ReadOnly Property ProductKind() As ProductKind
Get
Return ProductKind.Dashboard
End Get
End Property
Public Sub New()
InitializeComponent()
End Sub
End Class
End Namespace