Пример #1
0
 //when the add to favourites is clicked from the toolbar
 private void addToFavouritesToolStripMenuItem_Click(object sender, EventArgs e)
 {
     AddToFavourites frmFavourites = new AddToFavourites();
     //remove any spaces from the url and save the url to the class's object
     frmFavourites.setMyURL(this.urltextbox.Text.Trim());
     //show the dialog box for Add to Favourites
     frmFavourites.ShowDialog();
     //refresh the favourites so that hey get updated
     reloadFavourites();
 }