SystemTrayMenu/DataClasses/MenuData.cs
Markus Hofknecht d1b8c0b279 #88, #69, #103, #104, #105, #97, #106 ,version 0.10.2.8
[Feature] Code Analyze and Refactor 0.11 (#88)
[Feature] Mouse disturbing while using keys (#69)
[Feature] Reload menu when reenter or click (#103)
[BUG] Crash when fast mouse movings (#104)
[BUG] Loading was shown too often (#105)
[BUG] submenu wrong location in edgecase (#97)
[BUG] Folder shown as open (green) but is not open (#106)
2020-06-20 17:38:21 +02:00

20 lines
394 B
C#

using System.Collections.Generic;
namespace SystemTrayMenu.DataClasses
{
internal enum MenuDataValidity
{
AbortedOrUnknown,
Valid,
Empty,
NoAccess
}
internal struct MenuData
{
internal List<RowData> RowDatas;
internal MenuDataValidity Validity;
internal int Level;
internal RowData RowDataParent;
};
}