wpf - Elysium style destroyed when using WindowsFormsHost -
i'm using elysium in wpf application metro styled interface. style not preserved when try use windows forms control.
example:
<grid> <richtextbox /> </grid>
gives perfect result (with thin white border around wpf control)
however:
xmlns:winforms="clr-namespace:system.windows.forms;assembly=system.windows.forms" . . <grid> <windowsformshost name="wfh"> <winforms:richtextbox /> </windowsformshost> </grid>
gives me different legacy windows form type of border.
i want thin white border around windowsformelement if possible. i'm out of ideas @ moment.
Comments
Post a Comment