or
Hi Telerik,
My client needs the ability to multi-select items on the radtreeview using the arrow keys and either ALT and/or CTRL.
How do I enable this functionality?
Do you have a sample project or a code snippet?
Many thanks,
~Mike
| public class Tabs : RadTabStrip |
| { |
| } |
| void Form1_Load(object sender, EventArgs e) |
| { |
| var tabs = new RadTabStrip(); |
| Controls.Add(tabs); |
| tabs.BeginInit(); |
| tabs.Dock = DockStyle.Fill; |
| tabs.Items.Add(new TabItem() { Text = "First" }); |
| tabs.Items.Add(new TabItem() { Text = "Second" }); |
| tabs.Items.Add(new TabItem() { Text = "Third" }); |
| tabs.EndInit(); |
| } |