- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试实现 INotifyDataErrorInfo,但在尝试验证 ObservableCollection 属性时没有成功。
问题是,如果集合有误,我会得到红色边框,但如果我更正集合,红色边框就不会再消失。
有人知道如何解决这个问题吗?
我设置了一个小样本来演示问题:
<Window x:Class="Validation.ValidationWindow3"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="ValidationWindow3" Height="300" Width="300">
<DockPanel LastChildFill="True">
<TextBlock DockPanel.Dock="Top">Click button Add two times.<LineBreak/>
=> Red border should appear.<LineBreak/>
<LineBreak/>
Select second line in listbox then click button Remove.<LineBreak/>
=>Red border should disappear.</TextBlock>
<Button DockPanel.Dock="Bottom" Click="OnOk">Ok</Button>
<Button DockPanel.Dock="Top" Click="OnAdd">Add</Button>
<Button DockPanel.Dock="Top" Click="OnRemove">Remove</Button>
<ListBox ItemsSource="{Binding ListOfNumbers, NotifyOnValidationError=True}" SelectedItem="{Binding SelectedNumber}" />
</DockPanel>
代码隐藏:
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
namespace Validation
{
/// <summary>
/// Interaction logic for ValidationWindow2.xaml
/// </summary>
public partial class ValidationWindow3 : Window, INotifyDataErrorInfo
{
public ObservableCollection<int> ListOfNumbers
{
get { return (ObservableCollection<int>)GetValue(ListOfNumbersProperty); }
set { SetValue(ListOfNumbersProperty, value); }
}
public static readonly DependencyProperty ListOfNumbersProperty =
DependencyProperty.Register("ListOfNumbers", typeof(ObservableCollection<int>), typeof(ValidationWindow3), new PropertyMetadata(null, OnPropertyChanged));
public int SelectedNumber
{
get { return (int)GetValue(SelectedNumberProperty); }
set { SetValue(SelectedNumberProperty, value); }
}
public static readonly DependencyProperty SelectedNumberProperty =
DependencyProperty.Register("SelectedNumber", typeof(int), typeof(ValidationWindow3), new PropertyMetadata(-1));
public ValidationWindow3()
{
InitializeComponent();
ListOfNumbers = new ObservableCollection<int>();
DataContext = this;
}
private static void OnPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
ValidationWindow3 instance = d as ValidationWindow3;
ObservableCollection<int> coll = (ObservableCollection<int>)e.NewValue;
coll.CollectionChanged += instance.coll_CollectionChanged;
}
void coll_CollectionChanged(object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e)
{
CheckProperty("ListOfNumbers");
}
private void OnOk(object sender, RoutedEventArgs e)
{
if(HasErrors)
{
IEnumerable list = GetErrors(null);
string msg = "";
foreach(var item in list)
{
msg += item.ToString();
}
MessageBox.Show(msg);
return;
}
DialogResult = true;
}
void CheckProperty([CallerMemberName] string propertyName = "")
{
bool isValid = true;
string msg = null;
switch(propertyName)
{
case "ListOfNumbers":
msg = "Only even numbers allowed!";
foreach(int item in ListOfNumbers)
{
if(item % 2 > 0)
{
isValid = false;
}
}
break;
default:
break;
}
if(!isValid)
{
AddError(propertyName, msg);
}
else if(msg != null)
{
RemoveError(propertyName, msg);
}
}
// Adds the specified error to the errors collection if it is not
// already present, inserting it in the first position if isWarning is
// false. Raises the ErrorsChanged event if the collection changes.
public void AddError(string propertyName, string error, bool isWarning=false)
{
if(!errors.ContainsKey(propertyName))
errors[propertyName] = new List<string>();
if(!errors[propertyName].Contains(error))
{
if(isWarning)
errors[propertyName].Add(error);
else
errors[propertyName].Insert(0, error);
RaiseErrorsChanged(propertyName);
}
}
// Removes the specified error from the errors collection if it is
// present. Raises the ErrorsChanged event if the collection changes.
public void RemoveError(string propertyName, string error)
{
if(errors.ContainsKey(propertyName) &&
errors[propertyName].Contains(error))
{
errors[propertyName].Remove(error);
if(errors[propertyName].Count == 0)
errors.Remove(propertyName);
RaiseErrorsChanged(propertyName);
}
}
public void RaiseErrorsChanged(string propertyName)
{
if(ErrorsChanged != null)
ErrorsChanged(this, new DataErrorsChangedEventArgs(propertyName));
}
#region INotifyDataErrorInfo Members
private Dictionary<String, List<String>> errors =
new Dictionary<string, List<string>>();
public event EventHandler<DataErrorsChangedEventArgs> ErrorsChanged;
public System.Collections.IEnumerable GetErrors(string propertyName)
{
if (errors.Count < 1)
{
return null;
}
if(String.IsNullOrEmpty(propertyName))
{
return errors.SelectMany(err => err.Value.ToList());
}
if(!errors.ContainsKey(propertyName))
return null;
return errors[propertyName];
}
public bool HasErrors
{
get { return errors.Count > 0; }
}
#endregion
static int _nextNumber = 0;
private void OnAdd(object sender, RoutedEventArgs e)
{
ListOfNumbers.Add(_nextNumber++);
}
private void OnRemove(object sender, RoutedEventArgs e)
{
ListOfNumbers.Remove(SelectedNumber);
}
}
}
编辑:
我发现验证本身没有任何问题。这似乎是与 ListBox 有关的问题。如果我将一个额外的 TextBox 绑定(bind)到 ListOfNumbers,我可以看到这个 TextBox 上的边框工作正常。
这是我添加的:
<TextBox DockPanel.Dock="Top" Text="{Binding ListOfNumbers, NotifyOnValidationError=True}" />
那么为什么ListBox上的红色边框不对呢?
最佳答案
我想我已经找到原因了:
ListBox 正在验证 SelectedItem。因此,如果我删除此项,则绑定(bind)到 SelectedItem 的变量 SelectedNumber 的值不再存在于集合中。这给了我红色框。
我不认为这是 ListBox 的正确行为,但如果我牢记这一点,我可以根据情况使用一些解决方法:
关于c# - 红色边框不会随着 INotifyDataErrorInfo 消失,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26602962/
我的文本字段需要一个边框,如下图所示。我该怎么做? 最佳答案 试试这些..我希望它能帮助... UITextField *txt=[[UITextField alloc]initWithFrame:C
我尝试通过“GradientDrawable”改变颜色“描边”,但不起作用。 另外,我不知道如何获取 id stroke,并且只更改笔划(我看到 google,所有示例都失败了) 我的 XML 项目
有没有办法如何使用css(理想)来绘制元素边框但只是线条的一部分(在左右边框下方的图像中)? 最佳答案 是的,你可以,像这样,甚至 IE8 也可以这样做: div { position: re
我一直致力于自定义 GUI 框架,因为我无法处理需要通过标记 (XAML) 开发 UI 的托管废话或 native 代码。我正在尝试创建一个使用该 GUI 框架的应用程序原型(prototype),但
以下Microsoft example code包含以下内容: ... ... ... 但是,在运行时,此代码会生成以下数据绑定(bind)
所以基本上我在tex文件的顶部有这样的内容: \setbeamertemplate{footline}{Number \insertframenumber} 这会将“Number ”应用于所有帧的页脚
我不明白为什么我的 HBox 周围没有边框?现在什么也没有发生,除了 eclipse 抛出 IllegalArgumentException 之外,因为我猜是 this.setCenter(hbox)
我正在尝试使用 Colorbox,以便它在加载时打开并提醒访问者 session 注册已开放。我在 Javascript Coder 找到了我正在使用的代码。 我无法让“X”关闭Colorbox来显示
我制作了一个自定义面板,类似于 WrapPanel 但带有列(或类似于 Grid 但项目自动定位在网格中)。 这是它的样子: 我想在我的面板上有一个属性,它在每一列之间划一条线。是否可以在自定义面板上
我正在尝试为我的页面制作边框,但我没有这样做..我的代码是 @drawable/custom_border 我的问题是,黑色设置为整个 View (作为背景),我想要黑色边框而不是黑色背景
我目前正在开发一个小游戏,但我无法让圆圈正确击中左侧和顶部 Canvas 边框。它正确地击中了右侧和底部。 圆可以用 W A S D 移动,并且必须正确地碰到 Canvas 的所有边界 这是代码:ht
我有一个像这样的图像 slider :
如何绘制具有透明度的png图像轮廓(边框)。 就像我们有这张图片: 我们想要这个: 我正在通过 HTML5 创建图像阴影,但无法获得我想要的。我想使用 HTML5 或 jquery 或两者来绘制它,如
在我们的主页上,我们有几个元素作为菜单点。(图片+标题+小说明)。问题是当鼠标悬停时,菜单元素总是有边框。 (即使我隐藏边框)。 你可以看看:www.scf-software.com 图片问题: im
我对 HTML 和 CSS 完全陌生,所以我希望有人能给我指出正确的方向。我试图理解本教程以制作视差滚动网站: http://ihatetomatoes.net/simple-parallax-scr
如何使底部边框正好位于文本框下方? div { border-bottom: solid 2px #354458; } p { color: #ffffff; background-col
本质上,我想应用一个 bottom-border,但我不希望它位于单元格的底部,而是位于死 Angular 。 如何仅使用 CSS 和 HTML(并且不使用图形)做到这一点? 假设单元格/行的高度为
我有一个带有线性渐变的 block (div)。有没有可能让右上角切出一个三 Angular 形? 例如,你有 border-radius 5px 来制作一个圆 Angular 的 block 。但是
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 6 年前。 Improve this qu
我想按照下面的设计图实现下拉按钮。查看下拉菜单在按钮中间后开始。我的问题是按钮具有透明背景以利用根父 div 中的背景图像。 到目前为止,我已经实现了下图。正如我上面所说,我想在 border-rad
我是一名优秀的程序员,十分优秀!