コード例 #1
0
ファイル: HyperlinkLabel.cs プロジェクト: JGTM2016/bdhero
 /// <summary>
 ///     Constructs a new <see cref="HyperlinkLabel"/> instance.
 /// </summary>
 public HyperlinkLabel()
 {
     _hyperlink = Hyperlink.MakeHyperlink(this);
 }
コード例 #2
0
ファイル: MediaPanel.cs プロジェクト: JGTM2016/bdhero
 public MediaPanel()
 {
     InitializeComponent();
     _hyperlink = new Hyperlink(pictureBox);
     Resize += (sender, args) => AutoResize();
     comboBoxMedia.SelectedIndexChanged += (sender, args) => OnSelectedMediaChanged();
     LoadSearchResults();
 }