CAT | Windows Phone 7
25
DecNew Technology – Classroom7 technical demo – [video]
0 Comments | Posted by kananiprabodh in Technology News, Windows Phone 7
Classroom7 is the cloud based learning system which can add interaction and collaboration between student .
We use Windows phone 7 to help blind guys to move make calls send smss and Enjoy normal and happy life
Blindness is no more a problem!!
18
DecPlay Media files using MediaPlayer in Windows Phone 7 using c#
0 Comments | Posted by kananiprabodh in Windows Phone 7
MediaPlayerLauncher objmp= new MediaPlayerLauncher();
objmp.Media = new Uri("myMedia.mp4", UriKind.Relative);
objmp.Controls = MediaPlaybackControls.Pause | MediaPlaybackControls.Stop | MediaPlaybackControls.All;
objmp.Location = MediaLocationType.Install;
objmp.Orientation = MediaPlayerOrientation.Landscape;
objmp.Show();
objmp.Media = new Uri("myMedia.mp4", UriKind.Relative);
objmp.Controls = MediaPlaybackControls.Pause | MediaPlaybackControls.Stop | MediaPlaybackControls.All;
objmp.Location = MediaLocationType.Install;
objmp.Orientation = MediaPlayerOrientation.Landscape;
objmp.Show();
18
DecGet the screen resolution of Windows Phone 7
0 Comments | Posted by kananiprabodh in Windows Phone 7
string Width = Application.Current.Host.Content.ActualWidth.ToString();
string Height = Application.Current.Host.Content.ActualHeight.ToString();
MessageBox.Show(Width + " X " + Height);
string Height = Application.Current.Host.Content.ActualHeight.ToString();
MessageBox.Show(Width + " X " + Height);
18
DecPass data between Pages in Windows Phone 7 using c#
0 Comments | Posted by kananiprabodh in Windows Phone 7
In FirstPage.Xaml
private void firstpageButton_Click(object sender, RoutedEventArgs e)
{
string url = string.Format("/SecondPage.xaml?Para1={0}", txtParamete.Text);
this.NavigationService.Navigate(new Uri(url, UriKind.Relative));
}
{
string url = string.Format("/SecondPage.xaml?Para1={0}", txtParamete.Text);
this.NavigationService.Navigate(new Uri(url, UriKind.Relative));
}
SecondPage.xaml
private void PhoneApplicationPage_Loaded(object sender, RoutedEventArgs e)
{
lblParameterValue.Text = this.NavigationContext.QueryString["Para1"].ToString();
}
{
lblParameterValue.Text = this.NavigationContext.QueryString["Para1"].ToString();
}
![[del.icio.us]](http://www.itshala.com/wp-content/plugins/bookmarkify/delicious.png)
![[Digg]](http://www.itshala.com/wp-content/plugins/bookmarkify/digg.png)
![[dzone]](http://www.itshala.com/wp-content/plugins/bookmarkify/dzone.png)
![[Facebook]](http://www.itshala.com/wp-content/plugins/bookmarkify/facebook.png)
![[Google]](http://www.itshala.com/wp-content/plugins/bookmarkify/google.png)
![[LinkedIn]](http://www.itshala.com/wp-content/plugins/bookmarkify/linkedin.png)
![[Twitter]](http://www.itshala.com/wp-content/plugins/bookmarkify/twitter.png)
![[Windows Live]](http://www.itshala.com/wp-content/plugins/bookmarkify/windowslive.png)
![[Yahoo!]](http://www.itshala.com/wp-content/plugins/bookmarkify/yahoo.png)
![[Email]](http://www.itshala.com/wp-content/plugins/bookmarkify/email.png)
