我有一些简单的问题,如何在我的 GridControl 中启用附加按钮。我尝试了很多事情,例如:
GridView.OptionsView.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowAlways;
GridControl.EmbeddedNavigator.OptionsBehavior.AllowAddRows = true;
GridControl.EmbeddedNavigator.Buttons.Append.Enable = true;
GridControl.EmbeddedNavigator.Buttons.Append.Visible = true;
GridControl.EmbeddedNavigator.Enable = true;
GridControl.EmbeddedNavigator.Visible = true;
我不知道如何解决这个简单的任务。请帮我。
我使用 DevExpress 版本 18.1.5。