2012-09-25 91 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); 

什麼是這個代碼的問題,爲什麼它會阻止數據網格大小調整? 謝謝!

回答