private void MarkAllValid()
 {
     NameTextBox.ClearValue(Control.StyleProperty);
     CityTextBox.ClearValue(Control.StyleProperty);
     CapacityIntTextBox.ClearValue(Control.StyleProperty);
     CapacityNatTextBox.ClearValue(Control.StyleProperty);
     StateComboBox.ClearValue(Control.StyleProperty);
     TypeComboBox.ClearValue(Control.StyleProperty);
 }
        private void ClearInputs()
        {
            MarkAllValid();

            DebugIDLabel.ClearValue(Label.ContentProperty);
            NameTextBox.Clear();
            CityTextBox.Clear();
            CapacityIntTextBox.Clear();
            CapacityNatTextBox.Clear();
            StateComboBox.ClearValue(ComboBox.SelectedValueProperty);
            TypeComboBox.ClearValue(ComboBox.SelectedValueProperty);
        }