Exemplo n.º 1
0
 private void CopyChatURLClick(object sender, RoutedEventArgs e)
 {
     if (StudioContext.IsProjectLoaded(true))
     {
         Clipboard.SetText(StudioContext.CurrentProjectUrl());
     }
 }
Exemplo n.º 2
0
 private void StartChatInSimulator()
 {
     if (StudioContext.IsProjectLoaded(true))
     {
         Process.Start("anaconsim://app?chatflow=" + Uri.EscapeDataString(StudioContext.CurrentProjectUrl()));
     }
 }