void Worker_FileUpdated(object sender, FileUpdatedEventArgs e) { Binding.FireChange(x => x.ChangedDoc); FileChanged = true; UpdateState(); UpdateSize(); }
internal void OnFileUpdated(IDocTemplate template, string path) { if (FileUpdated != null) { var arg = new FileUpdatedEventArgs { Template = template, TempFilePath = path }; FileUpdated(this, arg); } }
internal void OnFileUpdated(IDocTemplate template, string path) { if(FileUpdated != null) { var arg = new FileUpdatedEventArgs { Template = template, TempFilePath = path }; FileUpdated(this, arg); } }