문제

i want to control that which pivotItem comes at first whenever my app starts? code please

도움이 되었습니까?

해결책

You can use

myPivotControl.SelectedIndex = 5;

or, if the pivot item has a Name:

myPivotControl.SelectedItem = myPivotItem;

다른 팁

OnNavigatedTo of the particular page, in your case default task page,(First page of you application), add the code code to selectItemIndex or SelectedItem.

use the following code , past in Page.xaml.cs

protected override void OnNavigatedTo(System.Windows.Navigation.NavigationEventArgs e)
        {

PivotControl1.SelectedIndex = 5; 

}

It opens the page with the specified pivot item at the first.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top