Hello,
Is there any way to bind a model to a window created with XRender...similar to the mvc examples...

    public ActionResult Button1_Click()
        {
            Window win = new Window
            {
                ID = "Window1",
                Title = "Example",
                Height = 185,
                Width = 350,
                BodyPadding = 5,
                Modal = true,
                CloseAction = CloseAction.Destroy,
                Html = "A new Window  was created at: " + DateTime.Now.ToLongTimeString()
            };

            win.Render(RenderMode.Auto);

            return this.Direct();
        }