1 write to Error
System.Windows.Forms (1)
System\Windows\Forms\ErrorProvider\ErrorProvider.cs (1)
786EnsureControlItem(control).Error = value;
6 references to Error
System.Windows.Forms (6)
System\Windows\Forms\ErrorProvider\ErrorProvider.ControlItem.ControlItemAccessibleObject.cs (1)
109public override string Name => string.IsNullOrEmpty(base.Name) ? _controlItem.Error : base.Name;
System\Windows\Forms\ErrorProvider\ErrorProvider.cs (3)
745public string GetError(Control control) => EnsureControlItem(control).Error; 784bool errorChanged = controlItem.Error != value 785&& (string.IsNullOrEmpty(controlItem.Error) != string.IsNullOrEmpty(value));
System\Windows\Forms\ErrorProvider\ErrorProvider.ErrorWindow.cs (2)
55ToolInfoWrapper<ErrorWindow> toolInfo = new(this, item.Id, TOOLTIP_FLAGS.TTF_SUBCLASS, item.Error); 356ToolInfoWrapper<ErrorWindow> toolInfo = new(this, item.Id, flags, item.Error, iconBounds);