예제 #1
0
 public QuoteDetailPage(Data.Quote quote)
 {
     BindingContext = quote;
     InitializeComponent();
     WorkingCopy = quote;
 }
예제 #2
0
파일: Quote.cs 프로젝트: tlhoward120/Quotes
 public Quote(Quote copy)
 {
     this.QuoteText = copy.QuoteText;
     this.Author    = copy.Author;
 }