This commit is contained in:
@@ -11,8 +11,14 @@ using DevComponents.DotNetBar;
|
||||
|
||||
namespace Volian.Controls.Library
|
||||
{
|
||||
public delegate void DisplayTabControlEvent(object sender,EventArgs args);
|
||||
public partial class DisplayTabControl : UserControl
|
||||
{
|
||||
public event DisplayTabControlEvent ToggleRibbonExpanded;
|
||||
public void OnToggleRibbonExpanded(object sender, EventArgs args)
|
||||
{
|
||||
if (ToggleRibbonExpanded != null) ToggleRibbonExpanded(sender,args);
|
||||
}
|
||||
#region Private Fields
|
||||
/// <summary>
|
||||
/// This is a lookup table for all of the DisplayTabItems that are currently open
|
||||
|
Reference in New Issue
Block a user