コード例 #1
0
        /// <summary>
        /// Invoked when this page is about to be displayed in a Frame.
        /// </summary>
        /// <param name="e">Event data that describes how this page was reached.  The Parameter
        /// property is typically used to configure the page.</param>
        protected override void OnNavigatedTo(NavigationEventArgs e)
        {
            var sampleData = new Controls_FlipView.Data.SampleDataSource();

            FlipView2Horizontal.ItemsSource = sampleData.Items;
            FlipView2Vertical.ItemsSource   = sampleData.Items;
        }
コード例 #2
0
 /// <summary>
 /// Invoked when this page is about to be displayed in a Frame.
 /// </summary>
 /// <param name="e">Event data that describes how this page was reached.  The Parameter
 /// property is typically used to configure the page.</param>
 protected override void OnNavigatedTo(NavigationEventArgs e)
 {
     var sampleData = new Controls_FlipView.Data.SampleDataSource();
     FlipView4.ItemsSource = sampleData.Items;
     ContextControl.ItemsSource = sampleData.Items;
     ContextControl.SelectionChanged += ContextControl_SelectionChanged;
 }
コード例 #3
0
        /// <summary>
        /// Invoked when this page is about to be displayed in a Frame.
        /// </summary>
        /// <param name="e">Event data that describes how this page was reached.  The Parameter
        /// property is typically used to configure the page.</param>
        protected override void OnNavigatedTo(NavigationEventArgs e)
        {
            var sampleData = new Controls_FlipView.Data.SampleDataSource();

            FlipView4.ItemsSource      = sampleData.Items;
            ContextControl.ItemsSource = sampleData.Items;
        }
コード例 #4
0
 /// <summary>
 /// Invoked when this page is about to be displayed in a Frame.
 /// </summary>
 /// <param name="e">Event data that describes how this page was reached.  The Parameter
 /// property is typically used to configure the page.</param>
 protected override void OnNavigatedTo(NavigationEventArgs e)
 {
     var sampleData = new Controls_FlipView.Data.SampleDataSource();
     FlipView5Horizontal.ItemsSource = sampleData.Items;
     FlipView5Vertical.ItemsSource = sampleData.Items;
 }