This is a migrated thread and some comments may be shown as answers.

BLEND 3 !!!!!!!!!!

2 Answers 48 Views
GridView
This is a migrated thread and some comments may be shown as answers.
Marc Roussel
Top achievements
Rank 2
Marc Roussel asked on 02 Mar 2010, 07:29 PM
Hi,

I always have the same problem.  when I want to understand How to do things in Blend 3 there's no help or I do not know where to look for.

For instence now I'm trying to figure out how to implement a RadContextMenu to my grid.  I saw the demo and I see the code but it doesn't let me see how to do it by Blend 3 UI.  Once I've added a RadContextMenu on my page
how do you bind it to the grid ?

I did look in the Miscellaneous section and I do not see any ContextMenu to set it to the RadContextMenu I've added on the form.
Please let me know if you have any video tutorial on how to do it in Blend 3 and please, tell me by the same way if you have anything about doing things in Blend 3 since I'm one of them who never write any xaml by hand.

It could be very very apreciated to SEE how things are done in Blend 3 UI only !!!!

Thank you very much about it.

2 Answers, 1 is accepted

Sort by
0
Marc Roussel
Top achievements
Rank 2
answered on 03 Mar 2010, 03:26 PM
Well since I don't know in Blend 3, with a bit of search, Yeah a bit, its 'a small word for the search I did but I found the solution by C# code

_rcmJobs = new RadContextMenu();  
 
_rcmJobs.Items.Add(new RadMenuItem() { Header = "Copier OP...", Icon = Gear.GetImage("copy.png", 16, 16) });  
_rcmJobs.Opened += new RoutedEventHandler(_rcmJobs_Opened);  
_rcmJobs.ItemClick += new Telerik.Windows.RadRoutedEventHandler(_rcmJobs_ItemClick);  
 
RadContextMenu.SetContextMenu(rgvJobs, _rcmJobs);  
 

For those who would like to know...
0
Marc Roussel
Top achievements
Rank 2
answered on 03 Mar 2010, 03:28 PM
Where do I click to set my message as answered ?
Tags
GridView
Asked by
Marc Roussel
Top achievements
Rank 2
Answers by
Marc Roussel
Top achievements
Rank 2
Share this question
or