Files
2022-03-30 11:30:34 +02:00

47 lines
1.1 KiB
C#

using System;
using System.Windows.Forms;
namespace Opc.Ua.Client.Controls
{
public partial class HeaderBranding : UserControl
{
public HeaderBranding()
{
InitializeComponent();
}
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
try
{
System.Diagnostics.Process.Start(linkLabel1.Text);
}
catch
{
}
}
private void linkLabel1_Click(object sender, EventArgs e)
{
linkLabel1_LinkClicked(sender, null);
}
private void pictureBox2_Click(object sender, EventArgs e)
{
try
{
System.Diagnostics.Process.Start("http://www.steamware.net");
// System.Diagnostics.Process.Start("http://www.opcfoundation.org/certification");
}
catch
{
}
}
private void ServerHeaderBranding_Load(object sender, EventArgs e)
{
appName.Text = this.Parent.Text;
}
}
}