private void Button_Click(object sender, RoutedEventArgs e)
 {
     if (!CurentStable)
     {
         LblWeightNonStable.Content    = "Вес не стабилен";
         LblWeightNonStable.Visibility = System.Windows.Visibility.Visible;
         return;
     }
     if (CurentWeight <= 0)
     {
         LblWeightNonStable.Content    = "Недопустимый вес";
         LblWeightNonStable.Visibility = System.Windows.Visibility.Visible;
         return;
     }
     AlohaTSClass.AddScaleDish(CurentBarcode, CurentWeight);
     myOwner.Close();
 }