1 write to pictureBoxState
System.Windows.Forms (1)
winforms\Managed\System\WinForms\PictureBox.cs (1)
124pictureBoxState = new System.Collections.Specialized.BitVector32(PICTUREBOXSTATE_useDefaultErrorImage |
26 references to pictureBoxState
System.Windows.Forms (26)
winforms\Managed\System\WinForms\PictureBox.cs (26)
205pictureBoxState[PICTUREBOXSTATE_cancellationPending] = true; 292if (errorImage == null && pictureBoxState[PICTUREBOXSTATE_useDefaultErrorImage]) 312pictureBoxState[PICTUREBOXSTATE_useDefaultErrorImage] = false; 412pictureBoxState[PICTUREBOXSTATE_needToLoadImageLocation] = !string.IsNullOrEmpty(imageLocation); 421if (WaitOnLoad && !pictureBoxState[PICTUREBOXSTATE_inInitialization] && !string.IsNullOrEmpty(imageLocation)) 493if (initialImage == null && pictureBoxState[PICTUREBOXSTATE_useDefaultInitialImage]) 513pictureBoxState[PICTUREBOXSTATE_useDefaultInitialImage] = false; 577pictureBoxState[PICTUREBOXSTATE_needToLoadImageLocation] = false; 642if (pictureBoxState[PICTUREBOXSTATE_asyncOperationInProgress]) 648pictureBoxState[PICTUREBOXSTATE_asyncOperationInProgress] = true; 666pictureBoxState[PICTUREBOXSTATE_needToLoadImageLocation] = false; 667pictureBoxState[PICTUREBOXSTATE_cancellationPending] = false; 726pictureBoxState[PICTUREBOXSTATE_cancellationPending] = false; 727pictureBoxState[PICTUREBOXSTATE_asyncOperationInProgress] = false; 738if (pictureBoxState[PICTUREBOXSTATE_cancellationPending]) 774if (pictureBoxState[PICTUREBOXSTATE_cancellationPending]) 888pictureBoxState[PICTUREBOXSTATE_useDefaultInitialImage] = true; 894pictureBoxState[PICTUREBOXSTATE_useDefaultErrorImage] = true; 932return !pictureBoxState[PICTUREBOXSTATE_useDefaultInitialImage]; 938return !pictureBoxState[PICTUREBOXSTATE_useDefaultErrorImage]; 1294if (pictureBoxState[PICTUREBOXSTATE_needToLoadImageLocation]) 1401return pictureBoxState[PICTUREBOXSTATE_waitOnLoad]; 1404pictureBoxState[PICTUREBOXSTATE_waitOnLoad] = value; 1419pictureBoxState[PICTUREBOXSTATE_inInitialization] = true; 1426Debug.Assert(pictureBoxState[PICTUREBOXSTATE_inInitialization]); 1436pictureBoxState[PICTUREBOXSTATE_inInitialization] = false;