This question is locked. New answers and comments are not allowed.
Hi,
When setting a binding on some barcodes like
The binding works the first time but then seems to get removed from the control. So if Data_value is updated the barcode is never updated. Checking the binding using myRadBarcode128.GetBindingExpression(RadBarcode128.TextProperty) it shows null.
The same code for the below barcode works all the time and checking the binding using myRadBarcodeEAN8.GetBindingExpression(RadBarcodeEAN8.TextProperty) you can see that it's still there.
So why does this get removed for some of the other barcodes and works for others?
When setting a binding on some barcodes like
myRadBarcode128.SetBinding(RadBarcode128.TextProperty,
new
System.Windows.Data.Binding(
"Data_value"
));
The binding works the first time but then seems to get removed from the control. So if Data_value is updated the barcode is never updated. Checking the binding using myRadBarcode128.GetBindingExpression(RadBarcode128.TextProperty) it shows null.
The same code for the below barcode works all the time and checking the binding using myRadBarcodeEAN8.GetBindingExpression(RadBarcodeEAN8.TextProperty) you can see that it's still there.
myRadBarcodeEAN8.SetBinding(RadBarcodeEAN8.TextProperty,
new
System.Windows.Data.Binding(
"Data_value"
));
So why does this get removed for some of the other barcodes and works for others?