How to assign ContentBinding property of HyperlinkColumn(XamWebGrid) at runtime? I did this at design time but not getting how to do it at runtime?
-Pankaj
Thanks Steve....
It solves my purpose.
Hi Pankaj,
I assume you're talking about the code behind?
You just need to create a Binding object.
HyperlinkColumn col = new HyperlinkColumn();
col.ContentBinding = new Binding("propertyName"){ Source = yourSource}
-SteveZ