예제 #1
0
 //Saves starting point of the manipulation
 private void L1Module_ContainerManipulationStarted(object sender, ContainerManipulationStartedEventArgs e)
 {
     Original = this.Center;
 }
예제 #2
0
 private void SviScatterManipulationStarted(object sender, ContainerManipulationStartedEventArgs e) {
     if (_fe.IsFullScreen) return;
     _svi.Opacity = _fe.OpacityDragging;
 }
예제 #3
0
 private void Sites_ContainerManipulationStarted(object sender, ContainerManipulationStartedEventArgs e)
 {
     originalCenter = Center;
 }
예제 #4
0
 private void ScatterViewItem_ContainerManipulationStarted(object sender, ContainerManipulationStartedEventArgs e)
 {
     GhostFrameManipulated();
 }
 void item_ContainerManipulationStarted(object sender, ContainerManipulationStartedEventArgs e)
 {
     LabelStatus.Content = "";
 }
예제 #6
0
 //Saves starting point of the manipulation to determine if user wants drag/clone or contact/ElementMenu
 //Also to determine where to place the clone if drag/clone occurs
 private void Part_ContainerManipulationStarted(object sender, ContainerManipulationStartedEventArgs e)
 {
     Original = this.Center;
 }
 /// <summary>
 /// Called on photos in the river. Copies the one you touched 
 /// (shows up underneath original) to replace it in the river.
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 void svi_ContainerManipulationStarted(object sender, ContainerManipulationStartedEventArgs e)
 {
     FlippingPhotoCard originalSVI = sender as FlippingPhotoCard;
     this.Items.Add(TransferCopyToNewScatterView(originalSVI));
 }
예제 #8
0
 private void Sites_ContainerManipulationStarted(object sender, ContainerManipulationStartedEventArgs e)
 {
     originalCenter = Center;
 }
예제 #9
0
 void svi_ContainerManipulationStarted(object sender, ContainerManipulationStartedEventArgs e)
 {
     e.Handled = true;
     isMoving = true;
     PART_Control.Visibility = Visibility.Visible;
     AppStateSettings.Instance.Dashboards.ActiveDashboardItem = Item;
 }