Keybind

Create keyboard shortcut bindings in WindUI

Keybind Element

Keybinds allow users to bind keyboard shortcuts to actions. They support all keyboard keys and modifier combinations.

local Keybind = Tab:Keybind({
    Title = "Toggle UI",
    Value = "V", -- default key
    Callback = function(key)
        print("Keybind pressed:", key)
    end
})

Keybind Parameters

NameDefault
: stringKeybind
: string?nil
: string?nil
: boolean?false
: string?nil
: function?nil

Keybind Methods

Name
()
()
()
()