Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.Views/3.4/SlaveAboutDialog.cs @ 6004

Last change on this file since 6004 was 5602, checked in by ascheibe, 13 years ago

#1233

  • added partial classes for dtos
  • added About dialog for Slave tray icon
  • added GetAllHiveExperiments method to service
File size: 555 bytes
Line 
1using System.Windows.Forms;
2
3namespace HeuristicLab.Clients.Hive.SlaveCore.Views {
4  public partial class SlaveAboutDialog : Form {
5    public SlaveAboutDialog() {
6      InitializeComponent();
7    }
8
9    private void webLinkLabel_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) {
10      System.Diagnostics.Process.Start(webLinkLabel.Text);
11    }
12
13    private void mailLinkLabel_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) {
14      System.Diagnostics.Process.Start("mailto:" + mailLinkLabel.Text);
15    }
16  }
17}
Note: See TracBrowser for help on using the repository browser.