Post Page Advertisement [Top]


          NewListPage,kullanıcıya yeni alışveriş listeleri ekleme imkanı sunar.Liste eklemek için sadece liste ismine ihtiyaç vardır. ID si otomatik olarak veri tabanı tarafından Identity özelliği ile üretilir,dolayısı ile bu sayfaya parametre iletmek zorunda değiliz.Sayfamızın tasarımında bir TextBox ve iki adet buton onay ve iptal butonları yer alır.


Listenin ismi yazılıp onay butonuna tıklandığında :

private void appBarOkButton_Click(object sender, EventArgs e)
        {
            if (ListNameTextBox.Text.Length > 0)
            {
                // Create a new shoplist
                TList newListItem = new TList
                {
                    Name = ListNameTextBox.Text,
                  
                };
                // Add the new shoplist to the View.
                App.View.AddList(newListItem);

                // Return to the main page.
                if (NavigationService.CanGoBack)
                {
                    NavigationService.GoBack();
                }

            }
          
        }

Eğer liste eklenmekten vazgeçilir iptal butonuna tıklanırsa:

    private void appBarCancelButton_Click(object sender, EventArgs e)
        {
            // Return to the main page.
            if (NavigationService.CanGoBack)
            {
                NavigationService.GoBack();
            }
        }

Uygulama kodu burada, iyi çalışmalar...




Hiç yorum yok:

Yorum Gönder

Bottom Ad [Post Page]