private void button_Decode_Click(object sender, RoutedEventArgs e)
 {
     ShannonFano.Decode(textBox_FileLocation.Text);
 }
 private void button_Encode_Click(object sender, RoutedEventArgs e)
 {
     Analyze();
     ShannonFano.Encode(textBox_FileLocation.Text, currentQuantities);
 }