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