30 lines
702 B
C#
30 lines
702 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Runtime.InteropServices;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace AIProofread.Controls
|
|
{
|
|
[ClassInterface(ClassInterfaceType.AutoDual)]
|
|
[ComVisible(true)]
|
|
public partial class FormContact : BaseWinForm
|
|
{
|
|
public FormContact()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void FormContact_Load(object sender, EventArgs e)
|
|
{
|
|
// 初始化
|
|
InitWebView(WebViewContact, Config.WebPath("contact"), "contact");
|
|
}
|
|
}
|
|
}
|