Commit da6d0999 authored by 潘栩锋's avatar 潘栩锋 🚴

更新 thick_public 解决AD盒输入授权码问题

parent d75300a3
......@@ -100,6 +100,26 @@ namespace FLY.Thick.BlowingScan.UI.Client
Application.Current.Properties["Password"] = gage.mPasswordService;
Application.Current.Properties["NavigationService"]= NavigationService;
Application.Current.Properties["DynArea"] = gage.mDynArea;
Application.Current.Properties["IBlowing"] = gage.mRenZiJiaService;
Application.Current.Properties["IBlowingDetect"] = gage.mBDetect;
Application.Current.Properties["WindowSize"] = gage.mSysParam.WindowSize;
//添加观察者,1分钟查一次WindowSize,修改了,就保存
FObjBase.PollModule.Current.Poll_Config(FObjBase.PollModule.POLL_CONFIG.ADD, () =>
{
if (Application.Current.Properties["WindowSize"] is int)
{
if ((int)Application.Current.Properties["WindowSize"] != gage.mSysParam.WindowSize)
{
gage.mSysParam.WindowSize = (int)Application.Current.Properties["WindowSize"];
gage.mSysParam.Save();
}
}
}, TimeSpan.FromMinutes(1));
gage.mDynArea.PropertyChanged += (s, e) =>
{
DynArea dynarea = s as DynArea;
......
Subproject commit d875b65ba2486233d67b1f15cc40c37d336b48e5
Subproject commit 4115e212ff87e28aaa3eab48e92904710a1d9f6f
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment