This commit is contained in:
33
source/WinFormApp/TrialExpired.cs
Normal file
33
source/WinFormApp/TrialExpired.cs
Normal file
@@ -0,0 +1,33 @@
|
||||
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 GZTW.AyaNova.BLL;
|
||||
namespace AyaNova
|
||||
{
|
||||
public partial class TrialExpired : Form
|
||||
{
|
||||
public TrialExpired()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private void lblQuickStart_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
|
||||
{
|
||||
|
||||
Util.OpenWebURL( "http://www.ayanova.com/purchase.htm");
|
||||
//this.WindowState = FormWindowState.Minimized;
|
||||
}
|
||||
|
||||
private void TrialExpired_Load(object sender, EventArgs e)
|
||||
{
|
||||
lblExpires.Text = string.Format(Util.LocaleText.GetLocalizedText("Error.License.Expired"), "");
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user