Exemplo n.º 1
0
 private void OnCalloutCloseTimerTick(object sender, EventArgs e)
 {
     if (this.calloutTimer.IsEnabled)
     {
         CalloutPopupService.Close(this.callout);
     }
 }
Exemplo n.º 2
0
 private void RadPathButton_Click(object sender, RoutedEventArgs e)
 {
     Clipboard.SetText(this.glyphTextContentTb.Text);
     this.calloutTimer.Stop();
     CalloutPopupService.Close(this.callout);
     CalloutPopupService.Show(this.callout, sender as FrameworkElement, this.calloutSettings);
     this.calloutTimer.Start();
 }