本文整理匯總了TypeScript中vs/base/common/keyCodes.ResolvedKeybinding.getElectronAccelerator方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript ResolvedKeybinding.getElectronAccelerator方法的具體用法?TypeScript ResolvedKeybinding.getElectronAccelerator怎麽用?TypeScript ResolvedKeybinding.getElectronAccelerator使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類vs/base/common/keyCodes.ResolvedKeybinding
的用法示例。
在下文中一共展示了ResolvedKeybinding.getElectronAccelerator方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: toIResolvedKeybinding
function toIResolvedKeybinding(kb: ResolvedKeybinding): IResolvedKeybinding {
return {
label: kb.getLabel(),
ariaLabel: kb.getAriaLabel(),
electronAccelerator: kb.getElectronAccelerator(),
userSettingsLabel: kb.getUserSettingsLabel(),
isWYSIWYG: kb.isWYSIWYG(),
isChord: kb.isChord(),
dispatchParts: kb.getDispatchParts(),
};
}
示例2: toIResolvedKeybinding
function toIResolvedKeybinding(kb: ResolvedKeybinding): IResolvedKeybinding {
return {
label: kb.getLabel(),
labelWithoutModifiers: kb.getLabelWithoutModifiers(),
ariaLabel: kb.getAriaLabel(),
ariaLabelWithoutModifiers: kb.getAriaLabelWithoutModifiers(),
electronAccelerator: kb.getElectronAccelerator(),
userSettingsLabel: kb.getUserSettingsLabel(),
isWYSIWYG: kb.isWYSIWYG(),
isChord: kb.isChord(),
hasCtrlModifier: kb.hasCtrlModifier(),
hasShiftModifier: kb.hasShiftModifier(),
hasAltModifier: kb.hasAltModifier(),
hasMetaModifier: kb.hasMetaModifier(),
dispatchParts: kb.getDispatchParts(),
};
}