Ejemplo n.º 1
0
 private void SetFilterContent_Combox(LinkLabel Lnk, em_Filter_Type emType, ref List <FilterContent> ListFilterContent)
 {
     ListFilterContent.Add(new FilterContent()
     {
         emFilterType = emType, Value = Lnk.Tag
     });
 }
Ejemplo n.º 2
0
 private void SetFilterContent_TextBox(LinkLabel Lnk, em_Filter_Type emType, ref List <FilterContent> ListFilterContent)
 {
     ListFilterContent.Add(new FilterContent()
     {
         emFilterType = emType, Value = Lnk.Text.Trim()
     });
 }