This question is locked. New answers and comments are not allowed.
Whats the best way to animate a rad window and can you provide an example? Ive seen lots of posts dated 2009 talking about this topic but I was wondering if there are any updates. Also, my RadWindow is instantiated in the code behind of its parent page as well and I would like to animate it (differently from the default fade in) when opened.
public partial class ParentPage {
ApplyGradeWindow agw = new ApplyGradeWindow();
protected void ShowWindow(GradeDocumentArgs gradeArgs)
{
agw.CurrentGradeDocumentArgs = gradeArgs;
agw.ShowDialog();
}
}