如这个:protected override void OnNavigatedTo(NavigationEventArgs e)
{
Color? sharedColor=(Application.Current as App).SharedColor;
if(sharedColor!=null)
ContentPanel.Background=new SolidColorBrush(sharedColor.Value);
base.OnNavigatedTo(e)//加上这句就搞不懂,但有些重写事件或定义的没这个同样可以运行??
}
另外一个:如:void OnTextBlockManipulationStarted(object sender,ManipulationStartedEventArgs e)
{
this.NavigationService.GoBack();
e.Complete();//这个应该是说明已经执行完的意思
e.Handled=true;
}
e.Complete()、e.Handled=ture、base.事件名(e)不知如何用?是一种提示吗?求解。。。。 |