Удалить дочерние элементы управления из кода дизайнера
Я создаю свой собственный TabControl с пользовательскими TabPages. Это идет хорошо, за исключением части удаления. Когда я добавляю TabControl к форме в конструкторе, все работает хорошо, добавляются 2 вкладки по умолчанию и отображается элемент управления. Но когда я удаляю TabControl из формы в конструкторе, вкладки TabPages, которые являются частью коллекции TabControl.Controls, не удаляются из кода конструктора. Они просто теряют своих родителей.
Какие-нибудь мысли?
Для создания я использую следующий код.
public class CustomTabControlDesigner : ParentControlDesigner
{
DesignerVerbCollection _fVerbs;
public override DesignerVerbCollection Verbs
{
get
{
if (_fVerbs == null)
{
_fVerbs = new DesignerVerbCollection(new[] { new DesignerVerb("Add Tab", OnAdd), new DesignerVerb("Del Tab", OnDel) });
}
return _fVerbs;
}
}
void OnAdd(object sender, EventArgs e)
{
IDesignerHost designerHost = (IDesignerHost)GetService(typeof(IDesignerHost));
if (designerHost != null)
{
WTabPage newPage = (WTabPage)designerHost.CreateComponent(typeof(WTabPage));
//newPage.Text = newPage.Name;
((WTab)Component).Controls.Add(newPage);
}
}
void OnDel(object sender, EventArgs e)
{
IDesignerHost designerHost = (IDesignerHost)GetService(typeof(IDesignerHost));
if (designerHost != null)
{
((WTab)Component).Controls.Remove(((WTab)Component).SelectedTab);
}
}
public override void InitializeNewComponent(IDictionary defaultValues)
{
base.InitializeNewComponent(defaultValues);
for (int i = 0; i < 2; i++)
{
OnAdd(this, EventArgs.Empty);
}
}
//protected override void Dispose(bool disposing)
//{
// for (int i = ((WTab)Component).Controls.Count - 1; i >= 0; i--)
// {
// ((WTab)Component).Controls.Remove(((WTab)Component).Controls[i]);
// }
// base.Dispose(disposing);
//}
protected override void WndProc(ref Message m)
{
base.WndProc(ref m);
// Selection of tabs via mouse
if (m.Msg == 0x201/*WM_LBUTTONDOWN*/)
{
WTab control = (WTab)Component;
int lParam = m.LParam.ToInt32();
Point hitPoint = new Point(lParam & 0xffff, lParam >> 0x10);
if (Control.FromHandle(m.HWnd) == null) // Navigation
{
if (hitPoint.X < 18 && control.SelectedIndex > 0) // Left
{
control.SelectedIndex--;
}
else
{
control.SelectedIndex++; // Right}
}
}
else
{
// Header click
for (int i = 0; i < control.TabCount; i++)
{
if (control.GetTabRect(i).Contains(hitPoint))
{
control.SelectedIndex = i;
return;
}
}
}
}
}
protected override void OnDragDrop(DragEventArgs de)
{
((IDropTarget)((WTab)Component).SelectedTab).OnDragDrop(de);
}
protected override void OnDragEnter(DragEventArgs de)
{
((IDropTarget)((WTab)Component).SelectedTab).OnDragEnter(de);
}
protected override void OnDragLeave(EventArgs e)
{
((IDropTarget)((WTab)Component).SelectedTab).OnDragLeave(e);
}
protected override void OnDragOver(DragEventArgs de)
{
((IDropTarget)((WTab)Component).SelectedTab).OnDragOver(de);
}
}
OnAdd и OnDel запускаются Задачами не при добавлении или удалении элемента управления: Task Img
2 ответа
На основании @Pablo notPicasso его ответа я использовал следующий код, который, кажется, работает. Есть ли ошибки в этом?
protected override void Dispose(bool disposing)
{
IDesignerHost designerHost = (IDesignerHost)GetService(typeof(IDesignerHost));
if (designerHost != null)
{
for (int i = ((WTab)Component).Controls.Count - 1; i >= 0; i--)
{
//
var tab = ((WTab)Component).Controls[i];
//
((WTab)Component).Controls.Remove(tab);
//
designerHost.DestroyComponent(tab);
}
}
base.Dispose(disposing);
}
Ты пытался IDesignerHost.DestroyComponent(...)
?
void OnDel(object sender, EventArgs e)
{
IDesignerHost designerHost = (IDesignerHost) GetService(typeof(IDesignerHost));
if (designerHost != null)
{
var tab = ((WTab) Component).SelectedTab;
((WTab) Component).Controls.Remove(tab);
designerHost.DestroyComponent(tab);
}
}