Beispiel #1
0
 public void Hide()
 {
     _avi = null;
     _timer?.Stop();
     if (_tt != null && _tt.IsOpen)
     {
         _tt.IsOpen = false;
     }
 }
Beispiel #2
0
 void _DocChanged(SciCode doc, bool opened)
 {
     _doc          = doc;
     _update       = false;
     _folded       = false;
     _visibleLines = default;
     _modTimer?.Stop();
     _modStart    = _modFromEnd = int.MaxValue;
     _diagCounter = 0;
     _Work(doc, cancel: true);
     //if (opened) {
     //}
 }
Beispiel #3
0
 void _EndedDragMode()
 {
     if (!_isDragMode)
     {
         return;
     }
     _isDragMode = _isProcess2 = false;
     _timer.Stop();
     if (!_wTransparent.Is0)
     {
         _wTransparent.Post(Api.WM_USER);                                 //let it close self
     }
 }