Reputation: 20697
I need to implement a radio button logic(multiple possibilities, one choice) with another look and feel.
The look and feel should be similar to this:
Meaning: an image, a title and a small description, no radio button but a border for the selected one.
I want to know if you know any existing components that can do this(in c# or in devexpress library) or if I have to implement this myself.
Thank you!
Upvotes: 0
Views: 1829
Reputation: 20697
I finally found the DevExpress SimpleButton components that could do such behavior
Upvotes: 0
Reputation: 1571
With RadioButton you can set Appearance=Button, use also Image property.
Upvotes: 0
Reputation: 16277
This looks like a list view, not a radio box. See MSDN help here.
View.Details enumeration:
Each item appears on a separate line with further information about each item arranged in columns. The left-most column contains a small icon and label, and subsequent columns contain sub items as specified by the application. A column displays a header which can display a caption for the column. The user can resize each column at run time.
View.Tile enumeration
Each item appears as a full-sized icon with the item label and subitem information to the right of it. The subitem information that appears is specified by the application. This view is available only on Windows XP and the Windows Server 2003 family. On earlier operating systems, this value is ignored and the ListView control displays in the LargeIcon view.
Upvotes: 4