Example #1
0
 /// <summary>
 ///     Constructs a new <see cref="HyperlinkLabel"/> instance.
 /// </summary>
 public HyperlinkLabel()
 {
     _hyperlink = Hyperlink.MakeHyperlink(this);
 }
Example #2
0
 public MediaPanel()
 {
     InitializeComponent();
     _hyperlink = new Hyperlink(pictureBox);
     Resize += (sender, args) => AutoResize();
     comboBoxMedia.SelectedIndexChanged += (sender, args) => OnSelectedMediaChanged();
     LoadSearchResults();
 }