using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace IStation.WinFrmUI
|
{
|
public class ModelBaseBrowser : System.Windows.Forms.UserControl
|
{
|
public ModelBaseBrowser() : base() { }
|
|
public event Action OnModelLoadSuceess = null;
|
public event Action OnModelLoadFail = null;
|
public event Action<string> OnClickObject = null;
|
|
|
}
|
}
|