Class Container
Definition
- Namespace:
- ElmSharp
- Assembly:
- ElmSharp.dll
It inherits Widget. The Container is an abstract class. The other class inherits it to elementary, which is about displaying its widgets in a nice layout.
C#Copy[Obsolete("This has been deprecated in API12")] public abstract class Container : Widget, IAccessibleObject
- Inheritance
- Derived
- Implements
Constructors
Declaration
C#Copy[Obsolete("This has been deprecated in API12")] protected Container()
View Source
Container(EvasObject)
Creates and initializes a new instance of the class, which inherit from the Container.
Declaration
C#Copy[Obsolete("This has been deprecated in API12")] protected Container(EvasObject parent)
Parameters
| Type | Name | Description |
|---|---|---|
| EvasObject | parent | The parent is a given object, which will be attached by the Container as a child. It's EvasObject type. |
Properties
Declaration
C#Copy[Obsolete("This has been deprecated in API12")] public override Color BackgroundColor { set; }
Property Value
| Type | Description |
|---|---|
| Color |
Overrides
Declaration
C#Copy[Obsolete("This has been deprecated in API12")] protected IEnumerable<EvasObject> Children { get; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.IEnumerable<T><EvasObject> |
Methods
Declaration
C#Copy[Obsolete("This has been deprecated in API12")] protected void AddChild(EvasObject obj)
Parameters
| Type | Name | Description |
|---|---|---|
| EvasObject | obj | The EvasObject object to be added. |
Declaration
C#Copy[Obsolete("This has been deprecated in API12")] protected void ClearChildren()
Declaration
C#Copy[Obsolete("This has been deprecated in API12")] protected void RemoveChild(EvasObject obj)
Parameters
| Type | Name | Description |
|---|---|---|
| EvasObject | obj | The EvasObject object to be removed. |