Beispiel #1
0
 private void EntryTextChanges(object o, TextInsertedArgs args)
 {
     if (cityId != 0)
     {
         if (firstCompletion)
         {
             EmptyCompletion();
             firstCompletion = false;
         }
         streetsDataLoader.LoadStreets(cityId, Text);
     }
 }
        private void EntryTextChanges(object o, TextInsertedArgs args)
        {
            if (CityGuid != null)
            {
                if (_firstCompletion)
                {
                    EmptyCompletion();
                    _firstCompletion = false;
                }

                _streetsDataLoader.LoadStreets(CityGuid, Text);
            }
        }