39 lines
740 B
C#
39 lines
740 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace KMBIM.Revit.Tools.License
|
|
{
|
|
public partial class wfAuthorization : Form
|
|
{
|
|
public wfAuthorization(string rq_code)
|
|
{
|
|
InitializeComponent();
|
|
tbRequestCode.Text = rq_code;
|
|
}
|
|
|
|
|
|
public string getAuthCode()
|
|
{
|
|
return tbAuthCode.Text;
|
|
}
|
|
|
|
|
|
private void wfAuthorization_Load(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
|
|
private void btnActivation_Click(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|