| | |
| | | /// </summary> |
| | | public event Action LoginCancelEvent; |
| | | |
| | | /// <summary> |
| | | |
| | | private bool _isInitialized = false;//初始化 |
| | | private const string _template = "hzkw_wx_template";//微信登录模板 |
| | | private const string _software = "HStation_XHS_DESKTOP";//软件编码 |
| | | |
| | | /// <summary> |
| | | /// 初始化 |
| | | /// </summary> |
| | | public async void Initial() |
| | | { |
| | | if (_isInitialized) |
| | | { |
| | | return; |
| | | } |
| | | _isInitialized = true; |
| | | var loginUrl = await BLLFactory<Yw.BLL.ToolWechat>.Instance.GetLoginUrl(_template); |
| | | await this.webView21.EnsureCoreWebView2Async(); |
| | | this.webView21.Source = new Uri(loginUrl); |