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;