70002473 I would like to see the icons a little larger in the popup form of the commandline

Article 70002473
Type Wish
Product Engine
Version 1005
Date Added 1/27/2024 12:00:00 AM
Fixed 11.0.1.0 (1/28/2024 12:00:00 AM)
Submitted by Anna Di Grezia

Summary

I would like to see the icons a little larger in the popup form of the commandline

Solution

We added two properties to the commandLine as following

summary>Represents the size of the icons of the popup form. Default size is 24;
public int PopupFormIconSize
You can set the Icons size like this : vdFramedControl.CommandLine.PopupFormIconSize = 48;

PopupFormIconSize : 24

PopupFormIconSize : 48




summary> Get/Set a boolean value that represents if the orientation of the texts of the commands will be Centered or Left. Default value is false.
public bool PopupFormCenterText
You can center the commands texts like this : vdFramedControl.CommandLine.PopupFormCenterText = true;


PopupFormCenterText : false

PopupFormCenterText : true




Note that you can also set the Font of the commandLine popup form and also it's width like below to have the following result
vdFramedControl.CommandLine.PopupFormIconSize = 48;
vdFramedControl.CommandLine.PopupFormCenterText = true;
vdFramedControl.CommandLine.PopupFormFont = new Font("Microsoft Sans Serif", 24.0f, FontStyle.Regular);
vdFramedControl.CommandLine.PopupFormWidth = 350;

Send comments on this topic.