PowerArgs.Cli.ConsoleBitmap.Unlock C# (CSharp) 메소드

Unlock() 공개 메소드

public Unlock ( bool paint = true ) : void
paint bool
리턴 void
        public void Unlock(bool paint = true)
        {
            IsLocked = false;
            Paint();
        }

Usage Example

예제 #1
0
 protected virtual void Dispose(bool disposing)
 {
     if (disposing)
     {
         // free managed resources
         if (bitmap != null)
         {
             bitmap.Unlock();
             bitmap = null;
         }
     }
 }