Inizio inserimento filtri x licenze

This commit is contained in:
Samuele Locatelli
2021-10-08 17:41:59 +02:00
parent 9f8fc56e22
commit c2c2f866b1
10 changed files with 388 additions and 209 deletions
+18
View File
@@ -10,6 +10,7 @@ namespace LiMan.UI.Data
#region Private Fields
private SelectData _detailFilter = SelectData.Init(5, 15);
private SelectGLS _detailFilterGLS = SelectGLS.Init(60, -30);
private string _pageIcon;
private string _pageName;
private string _searchVal;
@@ -50,6 +51,23 @@ namespace LiMan.UI.Data
}
}
public SelectGLS DetailGLSFilter
{
get => _detailFilterGLS;
set
{
if (_detailFilterGLS != value)
{
_detailFilterGLS = value;
if (EA_FilterUpdated != null)
{
EA_FilterUpdated?.Invoke();
}
}
}
}
public string PageIcon
{
get => _pageIcon;