Newer
Older
laserPTZ_CS / insertForm / service / IInsertService.cs
wangxitong on 11 Sep 376 bytes first commit
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace laserPTZ.insertForm.service
{
    public interface IInsertService
    {
        void SetPanelControl(Panel panelMain,String frmType,String rtspUrl, int activeIndex);

        void setToFirst(Panel panel);

        void setToLast(Panel pan);
    }
}