Posts by Dario Ferreira Franca • 1 point
2 posts
-
0
votes1
answer109
viewsA: Heranca de Proprieade Usercontrol Para Form VB.NET
Solved public partial class UserControl1 : UserControl { public UserControl1() { InitializeComponent(); } protected override void OnLoad(EventArgs e) { this.ParentForm.FormBorderStyle =…
-
0
votes1
answer109
viewsQ: Heranca de Proprieade Usercontrol Para Form VB.NET
How do I make a form inherit the same properties as a user control by dragging it from the controlbox to the form? Example: I created a Usercontrol with FormBorderStyle = none, I compiled and…