Hello
is there a way to set ShowHints default to true?
I can do it at running time setting ShowComponentHint from getting the FormDesigner from IDEEngine but using constructor is dificult
TISMIDEFormDesignComponent = class(TIDEFormDesignControl)
public
constructor Create(AOwner: TComponent); override;
end;
TIDEFormDesignControl hides FEngine as private and Designer is hard created at TIDEFormDesignControl constructor this way
FDesigner := TIDEFormDesigner.Create(nil);
I dont know how to inject my onw TIDEFormDesigner. It could be useful to have function with a TIDEFormDesigner class result and replace
FDesigner := TIDEFormDesigner.Create(nil);
by
FDesigner := GetIDEFormDesignerClass;
so we can use our TIDEFormDesigner descend with ShowComponentHint := true at class constructor.
Maybe It would be other way but i didnt find it
All the best
ilde