1
1
mirror of https://github.com/dgis/xsddiagram.git synced 2024-09-19 06:29:06 +03:00
xsddiagram/AboutForm.cs
2008-11-11 11:55:25 +00:00

27 lines
591 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace XSDDiagram
{
public partial class AboutForm : Form
{
public AboutForm()
{
InitializeComponent();
this.richTextBox.Text = Properties.Resources.ReadMe;
this.richTextBox.LinkClicked += new LinkClickedEventHandler(richTextBox_LinkClicked);
}
void richTextBox_LinkClicked(object sender, LinkClickedEventArgs e)
{
System.Diagnostics.Process.Start(e.LinkText);
}
}
}