Last change
on this file since 5614 was
5602,
checked in by ascheibe, 14 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 | |
---|
1 | using System.Windows.Forms;
|
---|
2 |
|
---|
3 | namespace 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.