|
dev
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Howto resize management console snap-in?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); |
|||||||||||||||||||||||