Home All Groups Group Topic Archive Search About

Howto resize management console snap-in?

Author
6 Nov 2006 11:28 AM
Edwin Engelen
I have developed my own management console snap-in with C# (MMC 3.0).
The problem is that my view (derived from UserControl and IFormViewControl)
does not receive any resize events.

Can anyone please tell me what te problem is?

Thanks in advance,
Edwin


This is how I create the snap-in view:

            //Create 'services' node
            node = new ScopeNode();
            node.DisplayName = "Services";
            node.ImageIndex = 2;
            node.SelectedImageIndex = 2;
            fvd = new FormViewDescription();
            fvd.DisplayName = node.DisplayName;
            fvd.ControlType = typeof(ServicesControl);
            node.ViewDescriptions.Add(fvd);
            node.ViewDescriptions.DefaultIndex = 0;
            this.RootNode.Children.Add(node);

AddThis Social Bookmark Button