29 lines
636 B
C#
29 lines
636 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
namespace BarcodeTerminator
|
|
{
|
|
public partial class FrmHelp : Form
|
|
{
|
|
public FrmHelp()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void btnClose_Click(object sender, EventArgs e)
|
|
{
|
|
this.Dispose();
|
|
}
|
|
|
|
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
|
|
{
|
|
System.Diagnostics.Process.Start("https://xinyiya.taobao.com/");
|
|
}
|
|
}
|
|
}
|