DevExpress Winform controls the Radiobutton group

I am working on a winform application where I need to introduce a radioobutton group so that users can specify options among mutually exclusive ones. The DevExpress project management team does not seem flexible enough. For example, it does not allow you to place individual radio stations in another layout, and also does not allow you to attach other controls (for example, a text field) to one of the radios that will be activated when the switch is selected (and similar settings ..) I missed something or is this the case when I need to write my own custom control (I can quickly assemble my own control from old old Winform controls, but I want to make sure that there is nothing like DevExpress already)?

+3
source share
1 answer

You can arrange the switches as you need. This can be done using separate CheckEdits. To make them work as radioButtons belonging to the same RadioGroup, install

Properties. RadioGroupIndex with the same value. Properties. CheckStyle to Radio

Hope this helps.

+10
source

Source: https://habr.com/ru/post/1795887/


All Articles