Table of Contents

Class ActionGroupModuleBuilder

Namespace
Kook
Assembly
Kook.Net.Core.dll

用来构建 ActionGroupModule 模块的构建器。

public class ActionGroupModuleBuilder : IModuleBuilder, IEquatable<ActionGroupModuleBuilder>, IEquatable<IModuleBuilder>
Inheritance
ActionGroupModuleBuilder
Implements
Inherited Members

Constructors

ActionGroupModuleBuilder()

初始化一个 ActionGroupModuleBuilder 类的新实例。

public ActionGroupModuleBuilder()

ActionGroupModuleBuilder(IList<ButtonElementBuilder>)

初始化一个 ActionGroupModuleBuilder 类的新实例。

public ActionGroupModuleBuilder(IList<ButtonElementBuilder> elements)

Parameters

elements IList<ButtonElementBuilder>

按钮组模块要包含的按钮元素。

Fields

MaxElementCount

元素的最大数量。

public const int MaxElementCount = 4

Field Value

int

Properties

Elements

获取或设置按钮组模块的按钮元素。

public IList<ButtonElementBuilder> Elements { get; set; }

Property Value

IList<ButtonElementBuilder>

Type

获取此构建器构建的模块的类型。

public ModuleType Type { get; }

Property Value

ModuleType

Methods

AddElement(ButtonElementBuilder)

添加一个按钮元素到按钮组模块。

public ActionGroupModuleBuilder AddElement(ButtonElementBuilder field)

Parameters

field ButtonElementBuilder

要添加的按钮元素。

Returns

ActionGroupModuleBuilder

当前构建器。

AddElement(Action<ButtonElementBuilder>?)

添加一个按钮元素到按钮组模块。

public ActionGroupModuleBuilder AddElement(Action<ButtonElementBuilder>? action = null)

Parameters

action Action<ButtonElementBuilder>

一个包含对要添加的新创建的按钮元素进行配置的操作的委托。

Returns

ActionGroupModuleBuilder

当前构建器。

Build()

构建当前构建器为一个 ActionGroupModule 对象。

public ActionGroupModule Build()

Returns

ActionGroupModule

由当前构建器表示的属性构建的 ActionGroupModule 对象。

Exceptions

ArgumentNullException

Elementsnull

ArgumentException

Elements 是一个空列表。

ArgumentException

Elements 的元素数量超过了 MaxElementCount

Equals(ActionGroupModuleBuilder?)

Indicates whether the current object is equal to another object of the same type.

public bool Equals(ActionGroupModuleBuilder? actionGroupModuleBuilder)

Parameters

actionGroupModuleBuilder ActionGroupModuleBuilder

Returns

bool

true if the current object is equal to the other parameter; otherwise, false.

Equals(object?)

Determines whether the specified object is equal to the current object.

public override bool Equals(object? obj)

Parameters

obj object

The object to compare with the current object.

Returns

bool

true if the specified object is equal to the current object; otherwise, false.

GetHashCode()

Serves as the default hash function.

public override int GetHashCode()

Returns

int

A hash code for the current object.

Operators

operator ==(ActionGroupModuleBuilder?, ActionGroupModuleBuilder?)

判定两个 ActionGroupModuleBuilder 是否相等。

public static bool operator ==(ActionGroupModuleBuilder? left, ActionGroupModuleBuilder? right)

Parameters

left ActionGroupModuleBuilder
right ActionGroupModuleBuilder

Returns

bool

如果两个 ActionGroupModuleBuilder 相等,则为 true;否则为 false

operator !=(ActionGroupModuleBuilder?, ActionGroupModuleBuilder?)

判定两个 ActionGroupModuleBuilder 是否不相等。

public static bool operator !=(ActionGroupModuleBuilder? left, ActionGroupModuleBuilder? right)

Parameters

left ActionGroupModuleBuilder
right ActionGroupModuleBuilder

Returns

bool

如果两个 ActionGroupModuleBuilder 不相等,则为 true;否则为 false