simple page selector for ascx user control
in Sitefinity 3.7 I added a blog selector to the admin area of my user control with the following code:
[TypeConverter("Telerik.Blogs.WebControls.SelectedBlogsConverter, Telerik.Blogs")] [WebEditor("Telerik.Blogs.WebControls.BlogsSelector, Telerik.Blogs")] public Guid[] SelectedBlogs get return this.selectedBlogs; set this.selectedBlogs = value; private Guid[] selectedBlogs;Equivalents of V3 WebEditors don't exist in V4/5, and instead you need to create a full control designer (which was also possible with V3).
Telerik's THUNDER add-in will do most of the heavy lifting for you, and should be able to generate the necessary code.