本文整理汇总了TypeScript中blessed.checkbox函数的典型用法代码示例。如果您正苦于以下问题:TypeScript checkbox函数的具体用法?TypeScript checkbox怎么用?TypeScript checkbox使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了checkbox函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1:
height: 1,
width: 20,
left: 1,
top: 3,
name: "text"
});
text2.on("focus", () => text2.readInput());
const check = blessed.checkbox({
parent: form2,
mouse: true,
keys: true,
shrink: true,
style: {
bg: "magenta"
},
height: 1,
left: 28,
top: 1,
name: "check",
content: "check"
});
const check2 = blessed.checkbox({
parent: form2,
mouse: true,
keys: true,
shrink: true,
style: {
bg: "magenta"
},
示例2: function
left: 1,
top: 3,
name: 'text'
});
text2.on('focus', function() {
text2.readInput();
});
var check = blessed.checkbox({
parent: form2,
mouse: true,
keys: true,
shrink: true,
style: {
bg: 'magenta'
},
height: 1,
left: 28,
top: 1,
name: 'check',
content: 'check'
});
var check2 = blessed.checkbox({
parent: form2,
mouse: true,
keys: true,
shrink: true,
style: {
bg: 'magenta'
},