private void DeleteItem_Click(object sender, RoutedEventArgs e)
        {
            PLayer newLayer = new PLayer();
            int    count    = newLayer.DeleteItem(this.did.Text);

            if (count > 0)
            {
                dStatus.Content           = "Item Deleted";
                this.did.Text             = "";
                this.dprice.Text          = "";
                this.dcatagory.Text       = "";
                this.dsize.Text           = "";
                this.dcolor.Text          = "";
                this.dbrand.Text          = "";
                this.ddpDate.SelectedDate = DateTime.Today;
            }
            else
            {
                dStatus.Content           = "No Item Deleted...";
                this.did.Text             = "";
                this.dprice.Text          = "";
                this.dcatagory.Text       = "";
                this.dsize.Text           = "";
                this.dcolor.Text          = "";
                this.dbrand.Text          = "";
                this.ddpDate.SelectedDate = DateTime.Today;
            }
        }