DotNet 4.8.1 build of DotNetBar
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace DevComponents.DotNetBar.Controls
|
||||
{
|
||||
public class TabFormPanel : PanelControl
|
||||
{
|
||||
#region Internal Implementation
|
||||
|
||||
private TabFormItem _TabFormItem;
|
||||
/// <summary>
|
||||
/// Gets the TabFormItem this panel is associated with
|
||||
/// </summary>
|
||||
public TabFormItem TabFormItem
|
||||
{
|
||||
get { return _TabFormItem; }
|
||||
internal set { _TabFormItem = value; }
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user