Added code to minimize and resize ribbon

This commit is contained in:
Rich
2009-05-19 19:50:12 +00:00
parent 51c044791c
commit 291f354893
3 changed files with 27 additions and 0 deletions

View File

@@ -33,6 +33,17 @@ namespace Volian.Controls.Library
private int _UniqueBarCount;
private ItemInfo _MyItemInfo = null;
private StepItem _MyStepItem = null;
private bool _RibbonExpanded=true;
public bool RibbonExpanded
{
get { return _RibbonExpanded; }
set
{
_RibbonExpanded = value;
foreach (DisplayTabItem tabItem in _MyDisplayTabItems.Values)
tabItem.MyStepTabPanel.MyStepTabRibbon.Expanded = _RibbonExpanded;
}
}
#endregion
#region Events
/// <summary>