37 lines
827 B
C#
37 lines
827 B
C#
using Chat.Framework.WXSdk.Implement;
|
|
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;
|
|
using static DevExpress.Utils.Drawing.Helpers.NativeMethods;
|
|
|
|
namespace FLSystem
|
|
{
|
|
public partial class Test : Form
|
|
{
|
|
public Test()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void button1_Click(object sender, EventArgs e)
|
|
{
|
|
//WXClientImpl_HOOK hook = new WXClientImpl_HOOK();
|
|
//hook.ShowLogin();
|
|
|
|
// this.Text = "MyWechat" + hook.Process.Id;
|
|
}
|
|
|
|
|
|
private void button2_Click(object sender, EventArgs e)
|
|
{
|
|
}
|
|
}
|
|
}
|