If there is not a Localization Key property on the control, you can pogrammatically set the text to a localized value by retrieving it through the MicroFour.StrataFrame.UI.Localization.RetrieveTextValue(Key) method. So, in the load of the form you can set the property like this:private void Form_Load(object sender, EventArgs e)
{
this.MaintenanceFormToolstrip1.Item(0).Text = Localization.RetrieveTextValue("NewText");
this.MaintenanceFormToolstrip1.Item(0).ToolTip =
Localization.RetrieveTextValue("NewToolTip");
}
You can also subclass any control and code the localization into that.