Hi,
I have just upgraded my RadControls for WinForms from Q1 2010 SP1 to Q1 2011.
Since I have been using RadToolStrips in my project, I got warnings telling me to use CommandBars instead of RadToolStrip.
So, I tried switching all the RadToolStrips to CommandBars, but I noticed the only way to add RadioButtons in a CommandBar is to use CommandBarHostItem. However, I couldn't put more than 1 RadioButton in a CommandBarHostItem. I had to create 1 CommandBarHostItem for each RadioButton, and if I do it that way, multiple RadioButtons can be selected at one time, which defeated my purpose of using RadioButtons because I want only one button in a group of radio buttons can be selected at one time.
Are there any solutions for my case?
Thanks
Something is overriding my settings.
RadImageItem image1 =
new
RadImageItem();
image1.Image = rl.RootElement.GetAsBitmap(Brushes.White, 0,
new
SizeF(1, 1));
rl.RootElement.GetAsBitmap(Brushes.White, 0,
new
SizeF(1, 1));
RadImageItem image2 =
new
RadImageItem();
image2.Image = grid.RootElement.GetAsBitmap(Brushes.White, 0,
new
SizeF(1, 1));
RadItemsContainer ric =
new
RadItemsContainer();
ric.Items.Add(image1);
ric.Items.Add(image2);
RadImageItem image3 =
new
RadImageItem();
image3.Image = ric.GetAsBitmap(Brushes.White, 0,
new
SizeF(1, 1));
image3.ImageKey = imageKey;