using System;
|
using System.Collections.Generic;
|
using System.Threading.Tasks;
|
|
namespace TProduct.WinFrmUI
|
{
|
public class ModelBaseBrowser : System.Windows.Forms.UserControl
|
{
|
public ModelBaseBrowser() : base() { }
|
|
public Action OnModelLoadSuceess = null;
|
public Action OnModelLoadFail = null;
|
public Action<string> OnClickObject = null;
|
public virtual bool Initial(
|
string ProductName,
|
List<TProduct.Model.WorkBenchMonitorPoint> allMonitors,
|
string url)
|
{
|
return false;
|
}
|
|
public virtual Task<TProduct.Model.WebBrowserResponse> RefreshMonitorValue(
|
List<TProduct.Model.MonitorPointValuePure> list)
|
{
|
return null;
|
}
|
|
}
|
}
|