2019-04-21 14:50:57 -04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
|
2019-07-16 17:35:21 -04:00
|
|
|
|
namespace Toolbox.Library
|
2019-04-21 14:50:57 -04:00
|
|
|
|
{
|
|
|
|
|
public interface IMdiContainer
|
|
|
|
|
{
|
|
|
|
|
void AddChildContainer(Form form);
|
|
|
|
|
}
|
|
|
|
|
}
|