■ BarManager 클래스에서 바 항목 링크를 추가하는 방법을 보여준다.
▶ MainForm.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
using DevExpress.XtraBars; using DevExpress.XtraEditors; namespace TestProject { /// <summary> /// 메인 폼 /// </summary> public partial class MainForm : XtraForm { //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - MainForm() /// <summary> /// 생성자 /// </summary> public MainForm() { InitializeComponent(); this.barManager.BeginUpdate(); BarItemLink newFileLink = this.toolBar.AddItem(this.newFileItem); newFileLink.UserPaintStyle = BarItemPaintStyle.CaptionGlyph; newFileLink.UserCaption = "새 문서"; BarItemLink openFileLink = this.toolBar.AddItem(this.openFileItem); openFileLink.UserPaintStyle = BarItemPaintStyle.CaptionGlyph; openFileLink.UserCaption = "문서 열기"; BarItemLink closeLink = this.toolBar.AddItem(this.closeItem); closeLink.BeginGroup = true; this.barManager.EndUpdate(); } #endregion } } |
※ 바 항목 링크가 추가되었으나 사용자 제목은 실제로 변경되지 않았다…