Change namespace/folder name
This commit is contained in:
parent
2ae8ef87d9
commit
8871651549
12 changed files with 11 additions and 11 deletions
34
Source/LibationWinForms/ProcessQueue/ProcessBookForm.cs
Normal file
34
Source/LibationWinForms/ProcessQueue/ProcessBookForm.cs
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
using System.Drawing;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue