添加项目文件。
This commit is contained in:
12
UIShare/PubEvent/AlarmEvent.cs
Normal file
12
UIShare/PubEvent/AlarmEvent.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace UIShare.PubEvent
|
||||
{
|
||||
public class AlarmEvent :PubSubEvent
|
||||
{
|
||||
}
|
||||
}
|
||||
12
UIShare/PubEvent/ChangeCurrentTagEvent.cs
Normal file
12
UIShare/PubEvent/ChangeCurrentTagEvent.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace UIShare.PubEvent
|
||||
{
|
||||
public class ChangeCurrentTagEvent:PubSubEvent<string>
|
||||
{
|
||||
}
|
||||
}
|
||||
12
UIShare/PubEvent/CollectedCANMessageChangedEvent.cs
Normal file
12
UIShare/PubEvent/CollectedCANMessageChangedEvent.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace UIShare.PubEvent
|
||||
{
|
||||
public class CollectedCANMessageChangedEvent:PubSubEvent
|
||||
{
|
||||
}
|
||||
}
|
||||
12
UIShare/PubEvent/ConnectionChangeEvent.cs
Normal file
12
UIShare/PubEvent/ConnectionChangeEvent.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace UIShare.PubEvent
|
||||
{
|
||||
public class ConnectionChangeEvent:PubSubEvent<(string,bool)>
|
||||
{
|
||||
}
|
||||
}
|
||||
13
UIShare/PubEvent/CurveDataEvent.cs
Normal file
13
UIShare/PubEvent/CurveDataEvent.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace UIShare.PubEvent
|
||||
{
|
||||
public class CurveDataEvent:PubSubEvent<(string, Dictionary<string,double>)>
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
12
UIShare/PubEvent/CurveInteractionEvent.cs
Normal file
12
UIShare/PubEvent/CurveInteractionEvent.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace UIShare.PubEvent
|
||||
{
|
||||
public class CurveInteractionEvent:PubSubEvent<(bool,double)>
|
||||
{
|
||||
}
|
||||
}
|
||||
12
UIShare/PubEvent/DeletedStepEvent.cs
Normal file
12
UIShare/PubEvent/DeletedStepEvent.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace UIShare.PubEvent
|
||||
{
|
||||
public class DeletedStepEvent : PubSubEvent<Guid>
|
||||
{
|
||||
}
|
||||
}
|
||||
12
UIShare/PubEvent/EditSetpEvent.cs
Normal file
12
UIShare/PubEvent/EditSetpEvent.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace UIShare.PubEvent
|
||||
{
|
||||
public class EditSetpEvent : PubSubEvent
|
||||
{
|
||||
}
|
||||
}
|
||||
12
UIShare/PubEvent/ExpandViewEvent.cs
Normal file
12
UIShare/PubEvent/ExpandViewEvent.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace UIShare.PubEvent
|
||||
{
|
||||
public class ExpandViewEvent:PubSubEvent<string>
|
||||
{
|
||||
}
|
||||
}
|
||||
12
UIShare/PubEvent/LoginSuccessEvent.cs
Normal file
12
UIShare/PubEvent/LoginSuccessEvent.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace UIShare.PubEvent
|
||||
{
|
||||
public class LoginSuccessEvent:PubSubEvent
|
||||
{
|
||||
}
|
||||
}
|
||||
12
UIShare/PubEvent/OverlayEvent.cs
Normal file
12
UIShare/PubEvent/OverlayEvent.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace UIShare.PubEvent
|
||||
{
|
||||
public class OverlayEvent : PubSubEvent<bool>
|
||||
{
|
||||
}
|
||||
}
|
||||
12
UIShare/PubEvent/ParamsChangedEvent.cs
Normal file
12
UIShare/PubEvent/ParamsChangedEvent.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace UIShare.PubEvent
|
||||
{
|
||||
public class ParamsChangedEvent:PubSubEvent
|
||||
{
|
||||
}
|
||||
}
|
||||
12
UIShare/PubEvent/RunSingalCompletedEvent.cs
Normal file
12
UIShare/PubEvent/RunSingalCompletedEvent.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace UIShare.PubEvent
|
||||
{
|
||||
public class RunSingalCompletedEvent : PubSubEvent<string>
|
||||
{
|
||||
}
|
||||
}
|
||||
12
UIShare/PubEvent/SettingChangedEvent.cs
Normal file
12
UIShare/PubEvent/SettingChangedEvent.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace UIShare.PubEvent
|
||||
{
|
||||
public class SettingChangedEvent:PubSubEvent
|
||||
{
|
||||
}
|
||||
}
|
||||
12
UIShare/PubEvent/StartProcessEvent.cs
Normal file
12
UIShare/PubEvent/StartProcessEvent.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace UIShare.PubEvent
|
||||
{
|
||||
public class StartProcessEvent:PubSubEvent<(string,bool)>
|
||||
{
|
||||
}
|
||||
}
|
||||
12
UIShare/PubEvent/WaitingEvent.cs
Normal file
12
UIShare/PubEvent/WaitingEvent.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace UIShare.PubEvent
|
||||
{
|
||||
public class WaitingEvent : PubSubEvent<bool>
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user