示例#1
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 public void DispatchClicked(object sender, BookmarkEventArgs e)
 {
     if (Clicked != null)
     {
         Clicked(sender, e);
     }
 }
示例#2
0
 /// <summary>
 /// Invoked when the user clicks on a bookmark
 /// </summary>
 /// <param name="sender">The sender of the event</param>
 /// <param name="e">The event data</param>
 private void Bookmark_Clicked(object sender, BookmarkEventArgs e)
 {
     this.SongProgress.Value = e.Position / 10;
 }
示例#3
0
 /// <summary>
 /// 
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void Bookmark_Clicked(object sender, BookmarkEventArgs e)
 {
     DispatchClicked(sender, e);
 }
示例#4
0
 /// <summary>
 /// 
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 public void DispatchClicked(object sender, BookmarkEventArgs e)
 {
     if (Clicked != null)
     {
         Clicked(sender, e);
     }
 }
示例#5
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void Bookmark_Clicked(object sender, BookmarkEventArgs e)
 {
     DispatchClicked(sender, e);
 }
示例#6
0
 /// <summary>
 /// Invoked when the user clicks on a bookmark
 /// </summary>
 /// <param name="sender">The sender of the event</param>
 /// <param name="e">The event data</param>
 private void Bookmark_Clicked(object sender, BookmarkEventArgs e)
 {
     this.SongProgress.Value = e.Position / 10;
 }