void al_KullaniciAdDondurCompleted(object sender, KullaniciAdDondurCompletedEventArgs e)
        {
            View_KullaniciBilgi kulbilgi = e.Result[0] as View_KullaniciBilgi;

            kullaniciad = kulbilgi.Ad;
            mahalle     = kulbilgi.MahalleAdi;
            mahalleid   = Convert.ToInt32(kulbilgi.MahalleId);

            txtAd.Text      = kullaniciad;
            txtMahalle.Text = mahalle;
        }
        private void lpkKullanici_SelectionChanged(object sender, SelectionChangedEventArgs e)
        {
            View_KullaniciBilgi kullanici = lpkMahalle.SelectedItem as View_KullaniciBilgi;

            if (kullanici != null)
            {
                txbEmail.Text   = kullanici.Email;
                txbMahalle.Text = kullanici.MahalleAdi;
                txtOnay.Text    = kullanici.Onay.ToString();
                id = kullanici.KullaniciId;
            }

            else
            {
                // lpkKullanici.SelectedIndex = -1;
            }
        }