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