Mini Kabibi Habibi
using System;
using System.Data;
using System.Drawing;
using System.Windows.Forms;
using DevExpress.XtraEditors.Repository;
using DevExpress.LookAndFeel;
using DevExpress.Utils;
using DevExpress.XtraBars;
namespace DevExpress.XtraNavBar.Demos {
public class TutorialControl : DevExpress.Tutorials.ModuleBase {
public TutorialControl() {
this.AutoScroll = true;
}
public virtual bool ShowLookAndFeel { get { return true; } }
}
public class NavBarTutorialMenu : DevExpress.DXperience.Demos.LookAndFeelMenu {
public NavBarTutorialMenu(BarManager manager, DefaultLookAndFeel lookAndFeel, string about) : base(manager, lookAndFeel, about) { }
protected override string ProductName { get { return "XtraNavBar"; } }
protected override void biProductWebPage_Click(object sender, ItemClickEventArgs e) {
System.Diagnostics.Process.Start("http://www.devexpress.com/Products/NET/WinForms/XtraNavBar/");
}
protected override void miAboutProduct_Click(object sender, ItemClickEventArgs e) {
DevExpress.Utils.About.AboutForm.Show(typeof(DevExpress.XtraNavBar.NavBarControl), DevExpress.Utils.About.ProductKind.DXperienceWin, DevExpress.Utils.About.ProductInfoStage.Registered);
}
}
}