0
是否有任何理由說明爲什麼事件LoadedPivotItem在分配了Pivot的DataContext時未觸發,因此創建數據透視表項?Pivot控件上的LoadedPivotItem事件未被第一次觸發,WP7
只有在Swype處理已經由_SelectionChanged事件處理的下一個數據透視表項時纔會觸發它。
protected override void OnNavigatedTo
(System.Windows.Navigation.NavigationEventArgs e)
{
var someData = LoadData();
pivot.DataContext = someData;
base.OnNavigatedTo(e);
}
void pivot_LoadedPivotItem(object sender, PivotItemEventArgs e)
{
// Will not stop here after data being assigned to DataContext
}
我需要這個事件,特別是因爲我需要PivotItem和它的數據上下文進行進一步的操作。 有沒有什麼我做錯了,或者有一些其他事件,我可以在這裏使用時獲得一個PivotItem(PivotItemEventArgs)。
謝謝