DevExpress – Hướng dẫn tạo Dashboard

DEVEXPRESS

1. Giới thiệu

Xin chào các bạn hôm nay mình demo dashboard được tạo bằng DevExpress như sau:

2. Code

Tạo UserControl

  • Chart
  • Employee
  • Calender
  • Clock

Tạo Form Main: Khởi tạo tất cả UserControl vừa tạo vào form

using DevExpress.XtraBars.Docking2010.Views;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace Document_Management
{
    public partial class Form1 : DevExpress.XtraEditors.XtraForm
    {
        //BaseDocument document1;
        //public Control AccountTemplatePanel { get { return document1.Control; } }
        public Form1()
        {
            InitializeComponent();

            
        }

        private void widgetView_QueryControl(object sender, DevExpress.XtraBars.Docking2010.Views.QueryControlEventArgs e)
        {
            if (!string.IsNullOrEmpty(e.Document.ControlTypeName))
                e.Control = Activator.CreateInstance(Type.GetType(e.Document.ControlTypeName)) as Control;
            else
                e.Control = new Control();

          
        }
    }
}

Download Code: DashboardWithDevExpress

Cảm ơn các bạn đã quan tâm nhé 🤓🤓🤓

Trả lời

Email của bạn sẽ không được hiển thị công khai. Các trường bắt buộc được đánh dấu *