예제 #1
0
 public ObserveWindow(String filename, IActorRef tailCoordinator)
 {
     InitializeComponent();
     _vm         = new ObserveWindowViewModel(filename, tailCoordinator);
     DataContext = _vm;
 }
예제 #2
0
 public TailActor(IObserveViewModel vm, string filePath)
 {
     _vm       = vm;
     _filePath = filePath;
     Ready();
 }
예제 #3
0
 public StartTail( string filePath, IObserveViewModel vm )
 {
     FilePath = filePath;
     ViewModel = vm;
 }
예제 #4
0
 public StartTail(string filePath, IObserveViewModel vm)
 {
     FilePath  = filePath;
     ViewModel = vm;
 }
예제 #5
0
 public ObserveWindow( String filename, IActorRef tailCoordinator )
 {
     InitializeComponent();
     _vm = new ObserveWindowViewModel( filename, tailCoordinator );
     DataContext = _vm;
 }
예제 #6
0
 public TailActor( IObserveViewModel vm, string filePath )
 {
     _vm = vm;
     _filePath = filePath;
     Ready();
 }