You are on page 1of 1

private void windowsUIView1_QueryControl(object sender, DevExpress.XtraBars.

Doc
king2010.Views.QueryControlEventArgs e)
{
if (e.Document.Caption == "document1")
{
e.Control = new DASHBOARD();
return;
}
}
SEGOE UI,10PT
DevExpress.XtraEditors.XtraForm
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
using DevExpress.UserSkins;
using DevExpress.Skins;
using DevExpress.LookAndFeel;
namespace WindowsFormsApplication3
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
SkinManager.EnableFormSkins();
UserLookAndFeel.Default.SetSkinStyle("DevExpress Dark Style");
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Administrator_Form());
}
}
}

You might also like