I have an "Edit User" Panel, and an "Add User" Window. I want both to display the same FormPanel, which I have defined in Views/Shared/_UserForm.cshtml

Click image for larger version. 

Name:	Untitled.png 
Views:	201 
Size:	66.0 KB 
ID:	5111

Right now I am displaying the partial view in the "Edit User" section by doing

viewportItems.Add(Html.X().FormPanel()
    .ItemsFromPage(this, "~/Views/Shared/UserForm.cshtml"));
However when I try to use ItemsFromPage again to add it to the window, I get the error

An item with the same key has already been added.
So, how can I add the same partialview to my main view twice?