I am trying to increase the size of a the drop-down items in a TMenuBar menu using FireMonkey on Windows platform (because when using a touch-screen it is difficult to press the right menu item).
I thought I should be able to do this by changing the X and Y scaling of menuitemstyle in my stylebook, but when I do, it changes only the size of the contents of the menu, and not the structure containing the contents, as shown here.
I have tried playing with all the size options I can find, but haven't found a way to change the size of the elements that drop down. Does anybody have any suggestions to fix this problem, please?
Styling menu size with FireMonkey
73 Views Asked by user3439823 At
1
There are 1 best solutions below
Related Questions in MENU
- moving a check box in html list and moving it
- Android toolbar context menu for listview items
- Joomla Get menu id from names
- How to add select menu in prestashop?
- Dynamic Menu in Qt Application
- Winforms remove controls on click
- CSS Menu system not working in IOS 8
- Polymer 1.0 How to vertical menu
- html css mega menu drop down
- How to add serial numbers to menu items in wordpress
- How to get HTML of a sidebar content in wordpress?
- Text on a menu becomes invisible
- Change Permalinks to Anchor Links When Using Bootstrap Navwalker
- Div ul list css menu
- Start onActivityResult not being called from menu option
Related Questions in SIZE
- can you use c code to read a .txt file size?
- Hiding overflowing element based on its height
- I want to drag an image to my pdf file using itext java
- MySQL error: The maximum column size is 767 bytes
- Increase the maximum size of char array
- Random double free or invalid next_size
- Java Swing JPanel size not working
- Reduce apk size with combine java files
- 1MiB = 1024KiB = 2^10. Nonetheless, why not use just 1000 byte instead 1024 to calculate size?
- Is possible to set hadoop blocksize 24 MB?
- Swift - Checking size of UIImageView
- Objective C - bold and change string text size for drawing text onto pdf
- Predictionio very large task size
- Wordpress select and crop in plugin
- Angular : get Dimension from Base64 Image
Related Questions in FIREMONKEY
- How to not load all database records in my TListbox in Firemonkey Delphi XE8
- how to modify a function so it returns an array of strings
- TabControl Navigation Buttons / Determine if Tab is Visible
- Nested forms with Showmodal in Win32/OSX
- How to Save files on external SD with Delphi XE8
- Firemonkey PNG to bitmap
- Firemonkey style designer make TRectangle fill parent
- Need help to find FireMonkey equivalent of the VCL TpaintBox.Canvas.Handle in the context of building graph
- Delphi - Copy an object
- How to handle TListBox scrolled all the way down to last TListBoxItem in Delphi XE8?
- Delphi fmx how to click through image and form?
- How i can set rgb color?
- Setting Firemonkey control font programmatically in C++
- Firemonkey how to implement app drawer-style tab control
- Accessing C-Objective code from within delphi?
Related Questions in TMENUITEM
- Styling menu size with FireMonkey
- How to find TMainMenu parent of TMenuItem?
- Howto create same style of tMenuItem with AdvancedDrawItem?
- Delphi firemonkey how to remove a menuitem programmatically?
- Sending WM_COMMAND to a TMenuItem
- Creating a Delphi app shortcut with no corresponding menu item
- How to draw transparent bitmap from ImageList on TMenuItem?
- CBuilder TMenu showing in wrong place
- Delphi: How to Assign an Up Arrow Keyboard Shortcut to Action/MenuItem, and Keep It Actual for Navigating the List Control (ListBox/VTV)?
- In Lazarus, how to check whether a MenuItem has a Bitmap assigned?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Changing the fixedheight of the menubaritemstyle (by code or modifying style) is not the better solution because submenu don't behave correctly. I found a better way, not involving style, even if at this moment I don't see how to take care of MenuBar Height .
If you have the sources, copy the FMX.Menu.pas into the app directory. Change file attribute, removing readonly. Go to line 1636 D11 *line 1650 for D12 You can see that a constant 23 is used for the height.
Change it to the value you want.
P.S. I tried FContent.Height, but this gave me a 50 value, that why I suggest a copy of the original source.
Add this new unit to the project and submenu should be OK