Winform 使用DotNetBar 设置界面为Office2007 样式

 public partial class FrmMain : DevComponents.DotNetBar.Office2007RibbonForm
    {
        public FrmMain()
        {
            InitializeComponent();
            this.EnableGlass = false;
        }

        private void FrmMain_Load(object sender, EventArgs e)
        {
            this.FormBorderStyle = FormBorderStyle.None;
            init();

        }

  

原文地址:https://www.cnblogs.com/hcyblogs/p/6725342.html