Re: Sizing problem after resizing the sheet

Yep. In WizardSheet.ResizeToFit, change the second loop to look like this:

foreach (WizardPage page in _pages)
{
    page.Size = maxPageSize;
    page.Dock = DockStyle.Fill;
}

(Add the page.Dock line).

I did this while fixing another bug that I found, and then couldn't reproduce your bug. I think they're the same thing.

Reply

The content of this field is kept private and will not be shown publicly.
  • Allowed HTML tags: <a> <b> <br> <code> <dd> <dl> <dt> <hr> <h1> <h2> <h3> <i> <img> <li> <ol> <p> <pre> <table> <td> <th> <tr> <tt> <u> <ul>
  • Images can be added to this post.

More information about formatting options