Exemplo n.º 1
0
 public Livro AddLivro(Livro livro)
 {
     livro.Testamento = this;
     this.livros.Add(livro);
     return livro;
 }
Exemplo n.º 2
0
 private void livroFound(Livro livro)
 {
     currentLivro = currentTestamento.AddLivro(livro);
 }
 internal void ShowContentFromShortcuts(Livro livro)
 {
     this.ClosePrincipal();
     this.mainPage.busca.PopupEnabled = false;
     this.mainPage.busca.Text = livro.Nome;
     this.mainPage.busca.PopupEnabled = true;
     this.ShowContent(new SbResultset(livro.Children, SbResultsetType.Referencia));
     Keyboard.Focus(this.mainPage.ler);
 }