Files
Mapo-IOB-WIN/IOB-OPC-UA/Applications/ClientControls.Net4/HeaderBranding.cs
T
2021-04-10 10:48:57 +02:00

38 lines
781 B
C#

using System;
using System.Windows.Forms;
namespace Opc.Ua.Client.Controls
{
public partial class HeaderBranding : UserControl
{
#region Public Constructors
public HeaderBranding()
{
InitializeComponent();
}
#endregion Public Constructors
#region Private Methods
private void pictureBox2_Click(object sender, EventArgs e)
{
try
{
System.Diagnostics.Process.Start("http://www.steamware.net");
}
catch
{
}
}
private void ServerHeaderBranding_Load(object sender, EventArgs e)
{
labelVersion.Text = this.Parent.Text;
}
#endregion Private Methods
}
}