Toolbar on Designer Control is invisible

edited 4:10PM in FastReport .NET
Hi,

I used a FR designer control in my form but in one case that i don't know reason, toolbar on designer control becomes invisible. I can't make it visible again. I am dragging new one into my form. Is there any way to make toolbar on designer control always visible with using EnvironmentSettings or Config classes?

Thnx...
1.jpg 72.6K

Comments

  • edited 4:10PM
    Hello,

    Probably you forget to call RefreshLayout method of the designer control:
        private void Form1_Load(object sender, EventArgs e)
        {
          // create a new empty report and attach it to the designer
          Report report = new Report();
          designerControl1.Report = report;
          
          // 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.