-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathUpdateForm.cs
More file actions
31 lines (28 loc) · 784 Bytes
/
UpdateForm.cs
File metadata and controls
31 lines (28 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Xml.Linq;
using System.IO;
using System.Diagnostics;
namespace JarrettVance.ChapterTools
{
public partial class UpdateForm : Form
{
public UpdateForm()
{
InitializeComponent();
}
public string Info { get { return lblInfo.Text; } set { lblInfo.Text = value; } }
public string MoreInfoLink { get; set; }
private void linkInfo_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
linkInfo.LinkVisited = true;
System.Diagnostics.Process.Start(MoreInfoLink);
}
}
}