> For the complete documentation index, see [llms.txt](https://docs.kimtoo.net/sdk/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.kimtoo.net/sdk/controls/radio.md).

# Radio

KimTools provides RadioBox and RadioButton for scenarios where a single option must be selected from a group.

Both controls inherit from the native WinForms RadioButton control. They share the same underlying Windows behavior, including mutual exclusivity, keyboard navigation, events, and accessibility support. Internally, they are the same engine. The difference is how they are presented and where they are best used.

[KtRadioBox](/sdk/controls/radio/kt-radiobox.md) follows the traditional radio button appearance. It is suited for forms, dialogs, and settings pages where users select one option from a clearly defined group.

[KtRadioButton](/sdk/controls/radio/radio-button.md) uses the same radio foundation but is styled to look and behave like a selectable button. When selected, it appears pressed, while other buttons in the same group are automatically released. This is useful for toolbars, segmented controls, and modern UIs that prefer button-style selection.

In short, both controls rely on the native WinForms radio button for correctness and consistency. KimTools exposes them in two visual forms so you can choose clarity or a more action-driven layout without changing selection logic.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.kimtoo.net/sdk/controls/radio.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
