Puttin HTML text input box on top of WPF/E
I have tried using absolute position to put an HTML text input box on top of the WPF/e control but it doesn't show up. Can someone please show me specifically how to place a text input control inside of a WPF/e control?
Thanks,
Michael S. Scherotter
Mindjet Labs
http://mindjetlabs.com
I used windowsless = true because that allows the background to be transparent. From the SDK on WindowlessMode:
If the value is set to true and the BackgroundColor property value specifies an alpha value, the color value is blended with the HTML page.
So if you want the wpf/e control to blend with the page then you set this to true. In my example I didn't really need this since there wasn't anything behind the WPF/E control, but it was probably just set like that in the page I used to create my example and I didn't change it.