private void BtnOpenInventory_Click(object sender, RoutedEventArgs e)
        {
            InventoryWindow window = new InventoryWindow();

            window.Show();
            window.Focus();
        }