25 lines
521 B
C#
25 lines
521 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel;
|
|||
|
using System.Data;
|
|||
|
using System.Drawing;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using System.Windows.Forms;
|
|||
|
using WeifenLuo.WinFormsUI.Docking;
|
|||
|
using XKRS.Common.Interface;
|
|||
|
|
|||
|
namespace XKRS.UI.Model.Winform
|
|||
|
{
|
|||
|
public partial class DeviceRunFrmBase : DockContent
|
|||
|
{
|
|||
|
public IDevice Device { get; set; }
|
|||
|
|
|||
|
public DeviceRunFrmBase()
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|