I'm developing an xbap application that is a partial trust application with Internet zone permissions. For security reasons I can not show a Window and as I result I am stuck with using the ChildWindow as my modal window that is part of the WPFToolkit. I'm looking into how the user can resize the childwindow with a maximize button and also resizing by dragging the edges/corners of the window.
How do implement a ChildWindow.ResizeMode = ResizeMode.CanResizeWithGrip simialr to the standard Window control? I've tried Xceeds WPF Toolkit as well. According to the documentation it's implementation of the ChildWindow has a ResizeMode public property (http://wpftoolkit.codeplex.com/wikipage?title=ChildWindow). But this is not the case as get ResizeMode is not defined compile time error and intellisense does not show it as a property either.
Is there an easy way to implement this feature or a free class library that has this functionality?