将RibbonControl拖到窗体并运行,当界面没有完全美化(还带有原系统窗口标题)的情况下可以参考以下方法:
vb.net基本用法
(在Form1.Designer.vb中设置)
Inherits DevComponents.DotNetBar.Office2007RibbonForm
Me.EnableGlass = False
----------------------------------------
C#基本用法
(在Form1.cs中设置)
namespace LearnCsharp1._0
{
public partial class Form1 : DevComponents.DotNetBar.Office2007RibbonForm
{
public Form1()
{
InitializeComponent();
EnableGlass = false;
}
}
}