Question: does Strataframe have an "insulation" layer to prevent future source upgrades from overwriting developer enhancements? If not, is it recommended one create their own subclasses and, if so, can the Strataframe wizards, builders, factories, etc. be changed to subclass from this layer?
Thanks in advance,
Randy Jean
Imports System.DrawingPublic Class OGSFFormControls Class OGSFLabel Inherits MicroFour.StrataFrame.UI.Windows.Forms.Label Public Sub New() MyBase.New() TextAlign = ContentAlignment.MiddleRight Font = New Font("Lucida Sans Typewriter", 8.0!, _ FontStyle.Regular, _ GraphicsUnit.Point, CType(0, Byte)) Height = 12 BackColor = Color.Transparent End Sub End ClassEnd Class