38 lines
781 B
C#
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
|
|
}
|
|
}
|