예제 #1
0
 /// <inheritdoc/>
 public virtual void ShowInView(IHtmlView htmlView, KeyValueList <string, string> variables, Navigation redirectedFrom)
 {
     View           = htmlView;
     RedirectedFrom = redirectedFrom;
     SetHtmlViewBackgroundColor(htmlView);
     Bindings?.Dispose();
     Bindings = new HtmlViewBindings(htmlView);
 }
예제 #2
0
 /// <inheritdoc/>
 public virtual void ShowInView(IHtmlView htmlView, KeyValueList <string, string> variables)
 {
     View = htmlView;
     Bindings?.Dispose();
     Bindings = new HtmlViewBindings(htmlView);
 }