-
Notifications
You must be signed in to change notification settings - Fork 7
/
ControlContainer.cs
54 lines (45 loc) · 1.32 KB
/
ControlContainer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
using System.ComponentModel;
namespace it
{
internal sealed partial class ControlContainer : IContainer, System.IEquatable<ControlContainer>
{
public ControlContainer(ControlContainer obj)
{
Components = obj.Components;
}
public ComponentCollection Components { get; private set; }
public void Add(IComponent component)
{
}
public void Add(IComponent component, string name)
{
if (component is null)
{
throw new System.ArgumentNullException(nameof(component));
}
if (string.IsNullOrEmpty(name))
{
throw new System.ArgumentException("message", nameof(name));
}
}
public void Dispose()
{
Components = null;
}
public bool Equals(ControlContainer other)
{
throw new System.NotImplementedException();
}
public override int GetHashCode()
{
throw new System.NotImplementedException();
}
public void Remove(IComponent component)
{
if (component is null)
{
throw new System.ArgumentNullException(nameof(component));
}
}
}
}