I saw an earlier ticket with a viewcontroller to enable a wizard popup window to be resizable. Please make this the default. Users are able to resize when the layout does not 100% fit. But they get annoyed when they cannot resize.
Kind regards, Willem
Replies
User
Description
Posted On
WullumpieClient
I had to remove the word 'default' from the topic: Make the WizardAction popup window default resizable
A not-understandable message appeared when i tried to submit the ticket with the 'original' topic description.
Sasha (Xafari Support)Client
Hi,
Thank you for the proposal. Unfortunately we will not implement this function for Xafari in the near future. But we will consider your proposal at any time. For now you can use ViewController:
public class SetWizardWindowResizeableDetailViewController : ViewController { public SetWizardWindowResizeableDetailViewController() { TargetObjectType = typeof (SomeWizardObject); } protected override void OnViewControlsCreated() { base.OnViewControlsCreated(); // Make wizard's detail view resizeable. var template = Frame?.Template as IWindowTemplate; if (template != null) template.IsSizeable = true; } }
Let us know if you need further assistance. Best regards, Sasha.