예제 #1
0
 public void Bind(RuntimeLog aRL)
 {
     _Model?.Dispose();
     _Model           = new RLModel(aRL, this.Dispatcher);
     _Model.Clarify  += RL_ClarifyLog;
     this.DataContext = _Model;
 }
예제 #2
0
 public RLModel(RuntimeLog aRL, Dispatcher aDispatcher)
 {
     rl = aRL ?? RL.GlobalRL;
     RegisteEvent();
     _Clearer = new Clearer();
     _Clearer.Bind(rl);
 }
예제 #3
0
파일: Watcher.cs 프로젝트: Gary2008/Helpers
 public void Dispose()
 {
     if (_RL != null)
     {
         UnregisteEvent();
     }
     _RL = null;
 }
예제 #4
0
파일: Watcher.cs 프로젝트: Gary2008/Helpers
 public void Bind(RuntimeLog aRL)
 {
     RLBinded = aRL;
 }