or
PropertyGridMenuItem descriptionItem = radPropertyGrid.RadContextMenu.Items[6]
as
PropertyGridMenuItem;
if
(descriptionItem !=
null
&& !descriptionItem.IsChecked)
File.Create(System.IO.Path.Combine(path,
"PropertyGridDescriptionUnchecked.txt"
));
foreach
(RadListDataItem item
in
this
.RadListControl1.Items) {
item.VisualItem.DoubleClick += Item_DoubleClick;
}
private
void
Item_DoubleClick(
object
sender, EventArgs e)
{
RadListDataItem item = ((RadListVisualItem)sender).Data;
MessageBox.Show(item.Text.ToString());
}
base.CreateChildElements();
CollapsableButtonAdapter adapter = new CollapsableButtonAdapter(ActionButton)
{ ShouldHandleMouseInput = false }; // otherwise, the adapter swallows the clicks
Children.Add(adapter);
hi ,
I have a requirement where in I got to show two or more images inside a single grid column. Pls advise how to achieve the same.
Pls find the attachment containing the sample image of the grid.
thanks
Krishnan N