3 writes to previousContext
System.Drawing (3)
commonui\System\Drawing\Graphics.cs (3)
379this.previousContext = context; 4399this.previousContext = context; 4411this.previousContext = context.Previous;
9 references to previousContext
System.Drawing (9)
commonui\System\Drawing\Graphics.cs (9)
375while(this.previousContext != null) { 377GraphicsContext context = this.previousContext.Previous; 378this.previousContext.Dispose(); 4149GraphicsContext context = this.previousContext; 4394if (this.previousContext != null) { 4396context.Previous = this.previousContext; 4397this.previousContext.Next = context; 4406Debug.Assert(this.previousContext != null, "Trying to restore a context when the stack is empty"); 4407GraphicsContext context = this.previousContext;