This question is locked. New answers and comments are not allowed.
In the rad list box, the Items.Add() function requires a variable of the type 'RadItem'. However, the following code crashes, with a 'Cannot convert RadItem to RadListBoxItem' error:
Changing it to a RadListBoxItem instead of the standard RadItem works.
Just something to add to your todo list :)
| foreach(string s in args) |
| { |
| RadItem item = new RadItem (); |
| item.Text = s; |
| radListBox1.Items.Add(item); |
| } |
Changing it to a RadListBoxItem instead of the standard RadItem works.
Just something to add to your todo list :)