vote up 5 vote down star
1

Suppose I have a grid with some row definitions, and a child control in that grid. How would I go about setting the Grid.Row property of the child control programatically?

flag

74% accept rate

3 Answers

vote up 5 vote down check

To set the value:

textBlock.SetValue(Grid.RowProperty, 3);

To reset the value:

textBlock.SetValue(Grid.RowProperty, null);
link|flag
If you prefer, you could use the idiom: Grid.SetRow(textBlock, 3); Attached properties usually have Get and Set methods (although I don't think it's mandatory so there may be exceptions). – Jim Lynn May 12 at 13:44
I notice (this is with the SL3 beta) that to change the location of a child control, you can't just set this property -- you need to remove the control from the parent grid, set the property as shown here, and then re-add it to the parent. – Eric Oct 1 at 19:03
vote up 3 vote down

I'm not 100% sure this is in SilverLight, but in WPF you call a static method (called SetX, where X is the property) on the type the attached property is defined on and pass it in which control to set the value on, and the value:

Grid.SetRow(MyControl, myRowNumber);
link|flag
Genius! Can the value also be cleared programatically? – Jeremy Jan 8 '09 at 20:17
Not sure off the top of my head, you might be able to null it. – Steven Robbins Jan 8 '09 at 20:19
vote up 1 vote down

Actually to clear a value you should use this:

textBlock.ClearValue(Grid.RowProperty);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.