Home
last modified time | relevance | path

Searched refs:CheckBoxConfiguration (Results 1 – 10 of 10) sorted by relevance

/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkui/arkui-ts/
H A Dts-universal-attributes-content-modifier.md39 … 组件的属性类,用来区别不同组件自定义内容区后所需要的不同信息,比如Button组件的ButtonConfiguration,Checkbox组件的CheckBoxConfiguration等。 |
43 ButtonConfiguration、CheckBoxConfiguration、DataPanelConfiguration、TextClockConfiguration、ToggleConfi…
66 class MyCheckboxStyle implements ContentModifier<CheckBoxConfiguration> {
71 applyContent() : WrappedBuilder<[CheckBoxConfiguration]>
77 @Builder function buildCheckbox(config: CheckBoxConfiguration) {
H A Dts-basic-components-checkbox.md137 contentModifier(modifier: ContentModifier\<CheckBoxConfiguration>)
149 | modifier | [ContentModifier\<CheckBoxConfiguration>](#checkboxconfiguration12对象说明) | 是 | 在Chec…
173 ## CheckBoxConfiguration<sup>12+</sup>对象说明
279 class MyCheckboxStyle implements ContentModifier<CheckBoxConfiguration> {
284 applyContent() : WrappedBuilder<[CheckBoxConfiguration]>
290 @Builder function buildCheckbox(config: CheckBoxConfiguration) {
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/checkbox/
H A Dcheckbox_content_modifier_test_ng.cpp117 auto node = [](CheckBoxConfiguration config) -> RefPtr<FrameNode> { in __anon21e2326b0302()
159 auto node = [](CheckBoxConfiguration config) -> RefPtr<FrameNode> { in __anon21e2326b0402()
201 auto node = [](CheckBoxConfiguration config) -> RefPtr<FrameNode> { in __anon21e2326b0502()
243 auto node = [](CheckBoxConfiguration config) -> RefPtr<FrameNode> { in __anon21e2326b0602()
285 auto node = [](CheckBoxConfiguration config) -> RefPtr<FrameNode> { in __anon21e2326b0702()
327 auto node = [](CheckBoxConfiguration config) -> RefPtr<FrameNode> { in __anon21e2326b0802()
369 auto node = [](CheckBoxConfiguration config) -> RefPtr<FrameNode> { in __anon21e2326b0902()
411 auto node = [](CheckBoxConfiguration config) -> RefPtr<FrameNode> { in __anon21e2326b0a02()
454 auto node = [](CheckBoxConfiguration config) -> RefPtr<FrameNode> { in __anon21e2326b0b02()
497 auto node = [](CheckBoxConfiguration config) -> RefPtr<FrameNode> { in __anon21e2326b0c02()
[all …]
H A Dcheckbox_test_ng.cpp2422 auto node = [](CheckBoxConfiguration config) -> RefPtr<FrameNode> { in __anon7035e6430502()
2456 auto node = [](CheckBoxConfiguration config) -> RefPtr<FrameNode> { in __anon7035e6430602()
2487 auto node = [](CheckBoxConfiguration config) -> RefPtr<FrameNode> { in __anon7035e6430702()
2520 auto node = [](CheckBoxConfiguration config) -> RefPtr<FrameNode> { in __anon7035e6430802()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/ark_component/src/
H A DArkCheckbox.ts19 checkboxNode: BuilderNode<[CheckBoxConfiguration]> | null = null;
20 modifier: ContentModifier<CheckBoxConfiguration>;
89 contentModifier(value: ContentModifier<CheckBoxConfiguration>): this {
93 setContentModifier(modifier: ContentModifier<CheckBoxConfiguration>): this {
106 …makeContentModifierNode(context: UIContext, checkBoxConfiguration: CheckBoxConfiguration): FrameNo…
178 class CheckBoxContentModifier extends ModifierWithKey<ContentModifier<CheckBoxConfiguration>> {
179 constructor(value: ContentModifier<CheckBoxConfiguration>) {
369 globalThis.Checkbox.contentModifier = function (modifier: ContentModifier<CheckBoxConfiguration>): …
/ohos5.0/docs/en/application-dev/reference/apis-arkui/arkui-ts/
H A Dts-universal-attributes-content-modifier.md39 …ample, **ButtonConfiguration** for the **Button** component and **CheckBoxConfiguration** of the *…
43 ButtonConfiguration, CheckBoxConfiguration, DataPanelConfiguration, TextClockConfiguration, ToggleC…
64 class MyCheckboxStyle implements ContentModifier<CheckBoxConfiguration> {
69 applyContent() : WrappedBuilder<[CheckBoxConfiguration]>
75 @Builder function buildCheckbox(config: CheckBoxConfiguration) {
H A Dts-basic-components-checkbox.md137 contentModifier(modifier: ContentModifier\<CheckBoxConfiguration>)
149 | modifier | [ContentModifier\<CheckBoxConfiguration>](#checkboxconfiguration12)| Yes | Content m…
202 ## CheckBoxConfiguration<sup>12+</sup>
304 class MyCheckboxStyle implements ContentModifier<CheckBoxConfiguration> {
309 applyContent() : WrappedBuilder<[CheckBoxConfiguration]>
315 @Builder function buildCheckbox(config: CheckBoxConfiguration) {
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/checkbox/
H A Dcheckbox_model_ng.h24 class CheckBoxConfiguration : public CommonConfiguration {
26 CheckBoxConfiguration(const std::string& name, bool selected, bool enabled) in CheckBoxConfiguration() function
33 std::function<RefPtr<FrameNode>(const CheckBoxConfiguration& checkBoxConfiguration)>;
H A Dcheckbox_pattern.cpp807 CheckBoxConfiguration checkBoxConfiguration(name, isSelected, enabled); in BuildContentModifierNode()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/nativeModule/
H A Darkts_native_checkbox_bridge.cpp342 CheckBoxConfiguration config) -> RefPtr<FrameNode> { in SetContentModifierBuilder()