Exemplo n.º 1
0
 public FilterMatch(FilterType filterType, string filter, LengthMatch lengthMatch)
 {
     FilterType = filterType;
     Filter = filter;
     LengthMatch = lengthMatch;
     if (FilterType == FilterType.Length)
         Length = Convert.ToInt32(filter);
     else
         Length = 0;
 }
Exemplo n.º 2
0
 public FilterMatch(FilterType filterType, string filter, LengthMatch lengthMatch)
 {
     FilterType  = filterType;
     Filter      = filter;
     LengthMatch = lengthMatch;
     if (FilterType == FilterType.Length)
     {
         Length = Convert.ToInt32(filter);
     }
     else
     {
         Length = 0;
     }
 }
Exemplo n.º 3
0
 private void cbLengthMatch_SelectedIndexChanged(object sender, EventArgs e)
 {
     lengthMatch = (LengthMatch)cbLengthMatch.SelectedIndex;
     UpdateControls();
 }
Exemplo n.º 4
0
 private void cbLengthMatch_SelectedIndexChanged(object sender, EventArgs e)
 {
     lengthMatch = (LengthMatch)cbLengthMatch.SelectedIndex; 
     UpdateControls();
 }