Explorar el Código

清理屏幕数据

Lishi
xxe hace 2 años
padre
commit
22c4048577
Se han modificado 1 ficheros con 11 adiciones y 1 borrados
  1. +11
    -1
      HKCardOUT/ViewModels/AdWindowViewModel.cs

+ 11
- 1
HKCardOUT/ViewModels/AdWindowViewModel.cs Ver fichero

@@ -23,6 +23,7 @@ namespace HKCardOUT.ViewModels
{
Foods.Add("");
}
}

#region 属性
@@ -34,9 +35,9 @@ namespace HKCardOUT.ViewModels
private AdInfoModel _mRAdinfo = new AdInfoModel();

public ObservableCollection<string> Foods { get; set; } = new ObservableCollection<string>();
#endregion


#endregion

void FoodsInit(int[] ScreenLoc)
{
@@ -60,6 +61,15 @@ namespace HKCardOUT.ViewModels
{
FoodsInit(BindScreen);

ThreadManage.GetInstance().StartLong(() => {
if (DateTime.Now.Hour == 16)
{
LAdInfo.AInfo = new ObservableCollection<ScreenInfoDto>();
RAdinfo.AInfo = new ObservableCollection<ScreenInfoDto>();
}
Thread.Sleep(5000);
}, "清理屏幕数据", true);

ThreadManage.GetInstance().StartLong(() =>
{
var model = (new HKCore()).PullDaySaleLog(BindScreen);


Cargando…
Cancelar
Guardar