Toasts – Diff between revs 26 and 27

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 26 Rev 27
Line 116... Line 116...
116 /// <summary> 116 /// <summary>
117 /// Display a toast with a title, body and a logo indefinitely on screen. 117 /// Display a toast with a title, body and a logo indefinitely on screen.
118 /// </summary> 118 /// </summary>
119 /// <param name="title">the toast title</param> 119 /// <param name="title">the toast title</param>
120 /// <param name="body">the toast body</param> 120 /// <param name="body">the toast body</param>
121 /// <param name="logo">the toast logo</param> -  
122 public ToastForm(string title, string body) : this() 121 public ToastForm(string title, string body) : this()
123 { 122 {
124 labelTitle.Text = title; 123 labelTitle.Text = title;
125 labelBody.Text = body; 124 htmlPanel1.Text = body;
126 } 125 }
Line 127... Line 126...
127   126  
128 /// <summary> 127 /// <summary>
129 /// Clean up any resources being used. 128 /// Clean up any resources being used.