
1. We want to customize a BrushEditBox: Because there is no longer PartEditBox in the new version, after upgrading, I can only find PartEditBoxBase<T>. However, the GenerateDefaultItems function in the original PartEditBox has been removed. How can I generate the appearance of the edit box text area now?
If we want to customize the DecimalEditBox or customize the ExpressionEditBox, how can we go about implementing it? There are no example codes provided for customizing EditBoxes in the samples(V23.1). However, in version 16.1 of the samples, there are example codes provided for customizing EditBoxes.
2. In the ActiproSoftware.Windows.Media namespace, the ConvertBack function of the ColorToBrushConverter class has not been implemented yet. What equivalent can be used to replace it?
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}
[Modified 2 years ago]