write user control the same as PANEL or GROUPBOX
-
i want to write a user control that atc the same as panel and keep others controls at himself. is it possible in vb.net thx
-
i want to write a user control that atc the same as panel and keep others controls at himself. is it possible in vb.net thx
All controls can contain other controls, but I assume you want design time support like the panel has. Do do that add this line of code just before the class declaration.
<Designer("System.Windows.Forms.Design.ParentControlDesigner,System.Design", GetType(IDesigner))> _
-
i want to write a user control that atc the same as panel and keep others controls at himself. is it possible in vb.net thx
You can also use inherits
system.windows.controls.panel
.
Fluent in VB, Attempts to speak C#, Python, English ;)
---
File Association in VB.Net