2 writes to Error
System.Windows.Forms (1)
System\Windows\Forms\ErrorProvider\ErrorProvider.cs (1)
792EnsureControlItem(control).Error = value;
System.Windows.Forms.Tests (1)
System\Windows\Forms\AccessibleObjects\ErrorProvider.ControlItem.ControlItemAccessibleObjectTests.cs (1)
122ControlItem item = new(provider, control, 100) { Error = testError };
8 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)
751public string GetError(Control control) => EnsureControlItem(control).Error; 790bool errorChanged = controlItem.Error != value 791&& (string.IsNullOrEmpty(controlItem.Error) != string.IsNullOrEmpty(value));
System\Windows\Forms\ErrorProvider\ErrorProvider.ErrorWindow.cs (2)
56ToolInfoWrapper<ErrorWindow> toolInfo = new(this, item.Id, TOOLTIP_FLAGS.TTF_SUBCLASS, item.Error); 357ToolInfoWrapper<ErrorWindow> toolInfo = new(this, item.Id, flags, item.Error, iconBounds);
System.Windows.Forms.Tests (2)
System\Windows\Forms\AccessibleObjects\ErrorProviderAccessibleObjectTests.cs (2)
100actual = _controlItem1.Error; 108actual = _controlItem2.Error;