2012-09-25 57 views
1

我可以调整窗口的DataGrid,直到我excecute验证码:调整大小DataGrid不工作

// Handle the tabcontrol animation 
DoubleAnimation dbTbViewsAnimation = 
    new DoubleAnimation(dToTabHeightParameter, new Duration(new TimeSpan(0,0,1))); 
this.tbViews.BeginAnimation(TabControl.HeightProperty, dbTbViewsAnimation); 


// Handle the tabcontrol animation 
DoubleAnimation dbCurrentPlaylistHeightAnimation = 
    new DoubleAnimation(dToCurrentPlaylistParameter, new Duration(new TimeSpan(0, 0, 1))); 
this.dgCurrentPlaylist.BeginAnimation(DataGrid.HeightProperty, dbCurrentPlaylistHeightAnimation); 

什么是这个代码的问题,为什么它会阻止数据网格大小调整? 谢谢!

回答