Free cookie consent management tool by TermsFeed Policy Generator

Changes between Version 3 and Version 4 of Documentation/DevelopmentCenter/CreateNewViews


Ignore:
Timestamp:
06/06/12 10:07:08 (12 years ago)
Author:
ascheibe
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Documentation/DevelopmentCenter/CreateNewViews

    v3 v4  
    7676The Locked state of a view is set if a operation is in progress and !ReadOnly is used if the content object itself indicates that it must not be changed. Most times the enabled property corresponds to the Locked state and additionally to !ReadOnly if not separates handling is provided by the control.
    7777
     78== Setting the AutoScaleMode of ContainerControls ==
     79To guarantee that HeuristicLab is rendered correctly with different font sizes and language settings (see #1688 for more information), the '''AutoScaleMode''' of ContainerControls has to be set to '''Inherit'''. This property has to be configured in the Visual Studio Windows Forms designer in the properties window for all ContainerControls:
     80
     81[[Image(autoscalemode.png)]]
     82
    7883
    7984This covers the main parts that must be kept in mind when developing new views for HeuristicLab. You can find the source code of the `StringConvertibleValueView` used as an example attached to this page.