Is there a way to hide the Silverlight grid when running?

Does anyone know how to hide grid rows at runtime?
You cannot set its visibility, the only way is to set its height to 0. Suppose the name of the grid is LayoutRoot and you want to hide the first row:

LayoutRoot.RowDefinitions[0].Height = new GridLength(0);

Does anyone know how to hide grid rows at runtime?

You cannot set its visibility, the only way is to set its height to 0. Suppose the name of the grid is LayoutRoot and you want to hide the first row:

LayoutRoot.RowDefinitions[0].Height = new GridLength(0);

WordPress database error: [Table 'yf99682.wp_s6mz6tyggq_comments' doesn't exist]
SELECT SQL_CALC_FOUND_ROWS wp_s6mz6tyggq_comments.comment_ID FROM wp_s6mz6tyggq_comments WHERE ( comment_approved = '1' ) AND comment_post_ID = 4088 ORDER BY wp_s6mz6tyggq_comments.comment_date_gmt ASC, wp_s6mz6tyggq_comments.comment_ID ASC

Leave a Comment

Your email address will not be published.