9 February 2011 0 Comments

모다의 윈도우폰7 뚝딱 팩토리(3)-윈도우폰7의 UI 구성요소(Controls)

  모다의 윈도우폰7 뚝딱 팩토리(3)-윈도우폰7의 UI 구성요소(Controls)   한국마이크로소프트에서 초급 스마트폰 개발자 분들을 위해 공개하는 모다의 윈도우폰7 뚝딱 팩토리 세번째 영상! 윈도우폰의 UI를 구성하는 컨트롤에 대해서 알아보고 버튼을 추가하며, 이를 이용해 페이지 전환예제를 구현합니다.   이번 예제에서 사용된 예제 소스코드는 아래를 참고해주세요.   using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Windows; using System.Windows.Controls; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Animation; using System.Windows.Shapes; using Microsoft.Phone.Controls; namespace navigation {     public partial class MainPage : PhoneApplicationPage     {         // Constructor         public MainPage()         {             InitializeComponent();         }         private void button1_Click(object sender, RoutedEventArgs e)         {             MessageBox.Show("Navigation");         }         private void hyperlinkButton1_Click(object sender, RoutedEventArgs e)         {             NavigationService.Navigate(new Uri("/Page1.xaml", UriKind.RelativeOrAbsolute));         }     } }   동영상 보러가기 슬라이드 보러가기 윈도우폰7 공식 팬페이지

Here is the original post: 
모다의 윈도우폰7 뚝딱 팩토리(3)-윈도우폰7의 UI 구성요소(Controls)

If you liked this post, buy me a Coffee.

Leave a Reply