private void ProductGeneralView_Load(object sender, EventArgs e)
 {
     LoadView?.Invoke(sender, e);
     Create.Binder(this.vm)
     .Control(txtBx_productName).Property(txtBx => txtBx.Text).Bind(vm => vm.ProductName)
     .Control(txtBx_metatagTitle).Property(txtBx => txtBx.Text).Bind(vm => vm.MetatagTitle)
     .Control(txtBx_metaTagDesc).Property(txtBx => txtBx.Text).Bind(vm => vm.MetatagDescription)
     .Control(txtBx_metaTagKeyWords).Property(txtBx => txtBx.Text).Bind(vm => vm.MetatagKeywords)
     .Control(txtBx_Tags).Property(txtBx => txtBx.Text).Bind(vm => vm.Tags);
     HTMLwysiwyg_description.setHTML(vm.Description);
     HTMLwysiwyg_description.BodyChanged += HTMLwysiwyg_description_BodyChanged;
 }
 private void HTMLwysiwyg_description_BodyChanged(object sender, EventArgs e)
 => vm.Description = HTMLwysiwyg_description.getHTML()?.TrimEnd();