Class LayoutManager
A Layout manager.
Inherited Members
Namespace: FM.LiveSwitch.Cocoa
Assembly: FM.LiveSwitch.Cocoa.dll
Syntax
public class LayoutManager : LayoutManager<UIView>
Constructors
LayoutManager(UIView)
Initializes a new instance of the LayoutManager class.
Declaration
public LayoutManager(UIView container)
Parameters
Type | Name | Description |
---|---|---|
UIView | container | The container. |
LayoutManager(UIView, LayoutPreset)
Initializes a new instance of the LayoutManager class.
Declaration
public LayoutManager(UIView container, LayoutPreset preset)
Parameters
Type | Name | Description |
---|---|---|
UIView | container | The container. |
LayoutPreset | preset | The preset. |
Properties
Container
Gets the container.
Declaration
public UIView Container { get; }
Property Value
Type | Description |
---|---|
UIView |
Mode
Gets or sets the mode used by the layout engine. Defaults to FloatLocal.
Declaration
public override LayoutMode Mode { get; set; }
Property Value
Type | Description |
---|---|
LayoutMode |
Overrides
Methods
AddView(UIView)
Adds a view to the container.
Declaration
protected override void AddView(UIView view)
Parameters
Type | Name | Description |
---|---|---|
UIView | view | The view to add. |
Overrides
FM.LiveSwitch.LayoutManager<UIView>.AddView(UIView)
DispatchToMainThread(Action2<Object, Object>, Object, Object)
Dispatches an action to the main thread.
Declaration
protected override void DispatchToMainThread(Action2<object, object> action, object arg1, object arg2)
Parameters
Type | Name | Description |
---|---|---|
Action2<System.Object, System.Object> | action | The action to invoke. |
System.Object | arg1 | The first argument. |
System.Object | arg2 | The second argument. |
Overrides
FM.LiveSwitch.LayoutManager<UIView>.DispatchToMainThread(FM.LiveSwitch.Action2<System.Object, System.Object>, System.Object, System.Object)
Layout()
Positions the local and remote views within the layout.
Declaration
public override void Layout()
Overrides
FM.LiveSwitch.LayoutManager<UIView>.Layout()
RemoveView(UIView)
Removes a view from the container.
Declaration
protected override void RemoveView(UIView view)
Parameters
Type | Name | Description |
---|---|---|
UIView | view | The view to remove. |
Overrides
FM.LiveSwitch.LayoutManager<UIView>.RemoveView(UIView)