Designer - property page not visible

Hello,

when using custom report designer on a separate form, at runtime the property card is not visible, and can't be opened by F4. Only when opening the "Data" or "ReportTree" card, the "Property" card becomes visible as well. From this moment on, after closing the "Property" card I can reopen it by pressing F4.

Can somebody confirm this behaviour?


With best regards - Ulrich

Comments

  • edited 8:56AM
    Hello,

    You have to add the following code in the Form.Load event handler:
        private void Form1_Load(object sender, EventArgs e)
        {
          // restore the design layout. Without this code, the designer tool windows will be unavailable
          designerControl1.RefreshLayout();
        }
    

Leave a Comment

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.