• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

TypeScript bobril.withKey函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了TypeScript中bobril.withKey函数的典型用法代码示例。如果您正苦于以下问题:TypeScript withKey函数的具体用法?TypeScript withKey怎么用?TypeScript withKey使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了withKey函数的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。

示例1: getSliderPreview

function getSliderPreview(): b.IBobrilChildren {
    return m.Paper({ zDepth: 0, style: { margin: 16, padding: 8 } }, [
        b.withKey(m.Slider({ value: slider1 }), 's1'),
        b.withKey(m.Slider({ value: slider1, disabled: true }), 's2'),
        b.withKey(m.Slider({ value: slider2, min: 5, max: 15, step: 1 }), 's3'),
        b.withKey(m.Slider({ value: slider2, min: 5, max: 15, step: 1, disabled: true }), 's4'),
    ]);
}
开发者ID:jirgl,项目名称:bobril-m,代码行数:8,代码来源:example.ts


示例2: getCheckboxPreview

function getCheckboxPreview(): b.IBobrilChildren {
    return m.Paper({ style: { margin: 16, padding: 8 } }, [
        b.withKey(m.Checkbox({ checked: ch1, action: () => { ch1 = !ch1; b.invalidate(); } }, 'Two state Checkbox'), 'ch1'),
        b.withKey(m.Checkbox({ checked: ch1, disabled: true }, 'Disabled two state'), 'ch2'),
        m.Divider(),
        b.withKey(m.Checkbox({ checked: ch3 == 1, indeterminate: ch3 == 2, action: () => { ch3 = (ch3 + 1) % 3; b.invalidate(); } }, 'Three state Checkbox'), 'ch3'),
        b.withKey(m.Checkbox({ checked: ch3 == 1, indeterminate: ch3 == 2, disabled: true }, 'Disabled three state'), 'ch4')
    ]);
}
开发者ID:jirgl,项目名称:bobril-m,代码行数:9,代码来源:example.ts


示例3: getRadioButtonPreview

function getRadioButtonPreview(): b.IBobrilChildren {
    return m.Paper({ style: { margin: 16, padding: 8 } }, [
        m.RadioButtonGroup({ value: rb1, unselectedValue: -1 }, [
            b.withKey(m.RadioButton({ value: 0 }, 'Option A'), 'rb1'),
            b.withKey(m.RadioButton({ value: 1 }, 'Option B'), 'rb2'),
            b.withKey(m.RadioButton({ value: 2 }, 'Option C'), 'rb3'),
            b.withKey(m.RadioButton({ value: 3, disabled: true }, 'Disabled Option'), 'rb4')
        ])
    ]);
}
开发者ID:jirgl,项目名称:bobril-m,代码行数:10,代码来源:example.ts


示例4: getTextFieldPreview

function getTextFieldPreview(): b.IBobrilChildren {
    return m.Paper({ zDepth: 0, style: { margin: 16, padding: 8 } }, [
        b.withKey(m.TextField({ value: str1, labelText: 'First Name' }), 'tf1'),
        b.withKey(m.TextField({ value: str2, labelText: 'Last Name', errorText: str2() == '' ? 'This field is required' : null }), 'tf2'),
        b.withKey(m.TextField({ value: str5, labelText: 'Password', inputType: 'password' }), 'tf3'),
        b.withKey(m.TextField({ value: str3, hintText: 'Hint text and no label' }), 'tf4'),
        b.withKey(m.TextField({ value: str3, labelText: 'Disabled with label', disabled: true }), 'tf5'),
        b.withKey(m.TextField({ value: str4, rows: 2, rowsMax: 4, hintText: 'Multiline 2-4 rows, Hint text and no label' }), 'tf6'),
        b.withKey(m.TextField({ value: str4, rows: 2, rowsMax: 4, labelText: 'Multiline 2-4 rows, Disabled with label', disabled: true }), 'tf7')
    ]);
}
开发者ID:jirgl,项目名称:bobril-m,代码行数:11,代码来源:example.ts


示例5:

             }
         }
         b.invalidate(ctx);
     }
 } else {
     if (focusFromKeyboard) showFocus = true;
 }
 if (showFocus) {
     rr = 12;
     ro = 0.2;
 }
 b.style(me, disabled ? disabledStyle : enabledStyle);
 let checkDiv: b.IBobrilNode = d.children != null ? { tag: "div" } : me;
 b.style(checkDiv, rootSwitchStyle);
 checkDiv.children = [
     rr != 0 && b.withKey(b.styledDiv("", showFocus ? focusFromKeyStyle : rippleStyle, { left: 12 - rr, top: 12 - rr, width: 2 * rr, height: 2 * rr, opacity: ro, background: checked ? styles.primary1Color : styles.checkboxOffColor }), "r"),
     b.styledDiv(ics.off({ color: "inherit" }), disabled ? ((checked || indeterminate) ? hiddenStyle : checkDisabled) : (checked ? boxWhenSwitchedStyle : boxStyle)),
     indeterminate != null && b.withKey(b.styledDiv(ics.indeterminate({ color: "inherit" }), disabled ? (indeterminate ? checkDisabled : hiddenStyle) : (indeterminate ? checkWhenSwitchedStyle : checkStyle)), "i"),
     b.styledDiv(ics.on({ color: "inherit" }), disabled ? (checked ? checkDisabled : hiddenStyle) : (checked ? checkWhenSwitchedStyle : checkStyle))
 ];
 if (checkDiv !== me) {
     me.children = [checkDiv, b.styledDiv(d.children, textStyle, disabled && disabledTextStyle)];
     b.style(me, wrapStyle);
 }
 me.attrs = {
     role: ctx.radio ? "radio" : "checkbox",
     "aria-checked": indeterminate ? "mixed" : checked ? "true" : "false",
     "aria-disabled": disabled ? "true" : "false"
 };
 if (!(disabled || ctx.radio && d.tabindex == null))
     me.attrs.tabindex = d.tabindex || 0;
开发者ID:karelsteinmetz,项目名称:bobril-m,代码行数:31,代码来源:checkbox.ts


示例6: handleRequestClose

        if (leftIconElement)
            leftIconElement = b.styledDiv(leftIconElement,
                leftIconDesktopStyle, { marginTop: d.desktop ? -8 : -4 });

        let rightIconElement: b.IBobrilNode | undefined;
        if (d.rightIcon)
            rightIconElement = b.styledDiv(d.rightIcon, { color: d.disabled ? styles.strDisabledColor : styles.strTextColor },
                rightIconDesktopStyle, { marginTop: d.desktop ? -8 : -4 });

        let secondaryTextElement;
        if (d.secondaryText) secondaryTextElement = b.styledDiv(d.secondaryText, secondaryTextStyle);

        let childMenuPopover;
        if (d.menuItems && ctx.open) {
            childMenuPopover = [b.withKey(ClickAwayListener({
                onClick: () => handleRequestClose(ctx)
            }), "c"),
            Popover({
                autoCloseWhenOffScreen: true,
                animation: d.animation,
                anchorOrigin: d.anchorOrigin || { horizontal: 'right', vertical: 'top' },
                anchorNode: ctx.me,
                open: ctx.open,
                targetOrigin: d.targetOrigin || { horizontal: 'left', vertical: 'top' },
                onRequestClose: () => handleRequestClose(ctx)
            },
                Menu({
                    desktop: d.desktop,
                    style: nestedMenuStyle
                }, d.menuItems),
            )];
开发者ID:jirgl,项目名称:bobril-m,代码行数:31,代码来源:menuItem.ts



注:本文中的bobril.withKey函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
TypeScript body-parser.default函数代码示例发布时间:2022-05-25
下一篇:
TypeScript bobril.styledDiv函数代码示例发布时间:2022-05-25
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap