Richtextbox Databinding issue on typing
问题 After binding object to Richtextbox using bindingsource, if i type anything inside the textbox cursor will move to beginning. Can someone please help me. I am binding as below this.txtDescription.DataBindings.Add("Text", bindingWard, "Description", false, DataSourceUpdateMode.OnPropertyChanged); 回答1: Try changing the DataSourceUpdateMode to OnValidation: this.txtDescription.DataBindings.Add("Text", bindingWard, "Description", false, DataSourceUpdateMode.OnValidation); If you want to keep the