|
|
|
@ -7,6 +7,8 @@ using System.Text;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.Windows;
|
|
|
|
|
using System.Windows.Automation.Peers;
|
|
|
|
|
using System.Windows.Automation.Provider;
|
|
|
|
|
using System.Windows.Controls;
|
|
|
|
|
using System.Windows.Data;
|
|
|
|
|
using System.Windows.Documents;
|
|
|
|
@ -28,6 +30,8 @@ namespace ScadaTool
|
|
|
|
|
//向单例中保存线程的同步上下文
|
|
|
|
|
ViewModelHelper.Instance().Context = SynchronizationContext.Current;
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
|
|
|
|
|
_ = AutoClickAsync();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void Window_Closing(object sender, System.ComponentModel.CancelEventArgs e)
|
|
|
|
@ -35,5 +39,18 @@ namespace ScadaTool
|
|
|
|
|
Application.Current.MainWindow.Hide();
|
|
|
|
|
e.Cancel = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 自动点击开始
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
public async Task AutoClickAsync()
|
|
|
|
|
{
|
|
|
|
|
await Task.Run(() => Task.Delay(2000));
|
|
|
|
|
|
|
|
|
|
ButtonAutomationPeer peer = new ButtonAutomationPeer(StartBtn);
|
|
|
|
|
IInvokeProvider invokeProv = peer.GetPattern(PatternInterface.Invoke) as IInvokeProvider;
|
|
|
|
|
invokeProv.Invoke();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|