Since the Windows phone form is not modal, how can i get the value of the selected color which is set at the ColorPicker.xaml ?
Dim FirstBand As Res.Color
Dim SecondBand As Res.Color
Private Sub TextBlock_Tap(sender As Object, e As GestureEventArgs)
NavigationService.Navigate(New Uri("/ColorPicker.xaml", UriKind.Relative))
FirstBand = ColorPicker.SelectedColor
txtFisrt.Text = FirstBand.ToString
End Sub
Private Sub TextBlock1_Tap(sender As Object, e As GestureEventArgs)
NavigationService.Navigate(New Uri("/ColorPicker.xaml", UriKind.Relative))
SecondBand = ColorPicker.SelectedColor
txtSecond.Text = SecondBand.ToString
End Sub