Files
Libation/Source/LibationWinForms/ProcessQueue/ProcessBookForm.cs
Michael Bucari-Tovo d67692355f Enable project-wide nullable reference types
Added DB migration for nullable types.
2026-02-05 12:43:05 -07:00

26 lines
458 B
C#

using System.Windows.Forms;
namespace LibationWinForms.ProcessQueue;
public partial class ProcessBookForm : Form
{
private Control? _dockControl;
public int WidthChange { get; set; }
public ProcessBookForm()
{
InitializeComponent();
}
public void PassControl(Control dockControl)
{
_dockControl = dockControl;
Controls.Add(_dockControl);
}
public Control? RegainControl()
{
Controls.Remove(_dockControl);
return _dockControl;
}
}