自动加载dbc
This commit is contained in:
17
UIShare/PubEvent/DBCFileNotFoundEvent.cs
Normal file
17
UIShare/PubEvent/DBCFileNotFoundEvent.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
namespace UIShare.PubEvent
|
||||
{
|
||||
/// <summary>
|
||||
/// DBC 自动加载时找不到文件事件。
|
||||
/// 参数:(通道号, 文件路径)
|
||||
/// </summary>
|
||||
public class DBCFileNotFoundEvent : PubSubEvent<DBCFileNotFoundArgs>
|
||||
{
|
||||
}
|
||||
|
||||
public class DBCFileNotFoundArgs
|
||||
{
|
||||
public int Channel { get; set; }
|
||||
public string FilePath { get; set; } = string.Empty;
|
||||
public string Scope { get; set; } = string.Empty;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user