Hello, I have an UltraToolBarManager in my Form and I would want to bind some tools to fields of the current DataRow in my form.
I would like to write things like (to bind the Text property of my TextBoxTool) :
myTextBoxTool.DataBindings.Add(new System.Windows.Forms.Binding("Text", myDataSource, myDataMember));
But the DataBindings property does not exists. Is there any ways to add a Binding to an UltraToolbarBase object ?
The toolbars manager does not support data binding tools like this. You can submit a feature request for this: http://devcenter.infragistics.com/Protected/RequestFeature.aspx.
Thanks. Request submitted.
I second that motion, why not support property binding??
Well normally, the DataBindings collection would be inherited by derived Controls, but since the tool types do not derive from Control, they do not get data binding support automatically. So this would have to be submitted as a feature request.