According to the doc, the WPF TextBox has a property named "IsHandwritingViewEnabled".
I want to use the WPF TextBox in a container in a VB6 app.
To do that, I create a new project with type "WPF Browser User Control Library (.NET Framework):
It automatically adds a UserControl.
I drag a WPF TextBox onto this UserControl:
To test if the property can be accessed, I add
IsHandwritingViewEnabled="True"
to the textbox. However, this does not work. It says "The property 'IsHandWritingViewEnabled' was not found in type 'TextBox'.
What am I doing wrong?
Thank you!