Destroy() 공개 메소드

public Destroy ( ) : void
리턴 void
예제 #1
0
 public override void Dispose()
 {
     if (widget != null)
     {
         widget.Destroy();
         widget = null;
     }
     if (info != null)
     {
         info.Updated -= OnInfoUpdated;
         info          = null;
     }
     base.Dispose();
 }
예제 #2
0
 public override void Dispose()
 {
     if (widget != null)
     {
         widget.Destroy();
         widget = null;
     }
     if (changedpathstore != null)
     {
         changedpathstore.Dispose();
         changedpathstore = null;
     }
     base.Dispose();
 }
예제 #3
0
 protected override void OnDispose()
 {
     if (widget != null)
     {
         widget.Destroy();
         widget = null;
     }
     if (info != null)
     {
         info.Updated -= OnInfoUpdated;
         info          = null;
     }
     base.OnDispose();
 }