Exemplo n.º 1
0
 private void BackButton_Click(object sender = null, EventArgs e = null)
 {
     if (book == null)
     {
         Utils.SwitchBetweenWindows(this, BookForm.Instance());
     }
     else
     {
         Utils.SwitchBetweenWindows(this, BookDetails.Instance(book));
     }
 }
Exemplo n.º 2
0
 private void Books_Click(object sender, EventArgs e)
 {
     Utils.SwitchBetweenWindows(this, BookForm.Instance());
 }