using System;
using DelftTools.Controls;
namespace DeltaShell.Gui.Forms.ViewManager
{
public class DockTabClosingEventArgs : EventArgs
{
///
/// View trying to close (because a tab is being closed)
///
public IView View { get; set; }
///
/// Specifies the close action should be cancelled
///
public bool Cancel { get; set; }
}
}