这个问题是基于这个解决方案的,但我不知何故无法使用组合框来解决这个问题。我想验证单击提交按钮后,组合框有一个选定的项目并且不为空。请注意,我不是故意绑定任何东西,也不是因为我不知道如何绑定。但是,如果答案是我无法在没有绑定的情况下使用验证规则(特别是针对 ComboBoxes,我已经通过链接解决方案对文本框进行了此操作),请告诉我。
这是我到目前为止所拥有的:
XAML:
<ComboBox DataContext="{StaticResource ChargeAssigneeViewSource}" Name="ChargeAssigneeBox" ItemsSource="{Binding}" Width="85">
<ComboBox.SelectedItem>
<Binding RelativeSource="{RelativeSource Self}" Path="GetType" Mode="TwoWay">
<Binding.ValidationRules>
<my:ComboBoxValidationRule ErrorMessage="Please select an Assignee" />
</Binding.ValidationRules>
</Binding>
</ComboBox.SelectedItem>
</ComboBox>
验证规则:
class ComboBoxValidationRule : ValidationRule
{
private string errorMessage;
public string ErrorMessage
{
get { return errorMessage; }
set { errorMessage = value; }
}
public override ValidationResult Validate(object value, CultureInfo cultureInfo)
{
if (value == null)
return new ValidationResult(false, ErrorMessage);
return new ValidationResult(true, null);
}
}
按钮点击:
private void AddAnHours()
{
Employee currEmployee;
if (!ValidateElement.HasError(ChargeAssigneeBox))
{
if (!ValidateElement.HasError(analystTimeTxtBox))
{
currEmployee = ChargeAssigneeBox.SelectedItem as Employee;
item.AddTime(currEmployee, DateTime.Now, double.Parse(analystTimeTxtBox.Text));
analystTimeTxtBox.Clear();
ChargeAssigneeBox.SelectedItem = null;
}
}
UpdateTotals();
}
我得到的错误在这一行:
currEmployee = ChargeAssigneeBox.SelectedItem as Employee;
但是我的 ItemsSource 绑定正确,因此即使我选择了一个项目,所选项目也不会将其转换为员工对象。我怀疑这与我将其绑定到的内容有关:
<Binding RelativeSoruce="{RelativeSource Self}" Path="GetType"....>
帮助将不胜感激,谢谢。