MetroStyleManager How To Use – Bug Free

MetroStyleManager How To Use – Bug Free

On this post MetroStyleManager How To Use – Bug Free, I will show you the fixed that I made for the metrostylemanager-issueMetroStyleManager. On my older post for MetroStyleManager How To Use Metro Style Manager I showed you on how to use the MetroStyleManager and apply the same theme and style from parent form to child form. Unfortunately there is bug on it that the controls inside the child form didn’t inherit the same theme and style from parent form.


I also include that fixed for MetroContextMenu which is not capturing the correct theme and style.

Old way to apply same style from parent form to child form

ChildForm _chld = new ChildForm();
_chld.StyleManager = this.StyleManager;
_chld.ShowDialog();

_chld.Dispose();

Correct way to apply same style from parent form to child form

ChildForm _chld = new ChildForm();
this.StyleManager.Clone(_chld);
_chld.ShowDialog();

_chld.Dispose();

I will include this update on my next compile, which will also include some features for MetroTextBox and MetroTileControl.  For those who are waiting for MetroListView and MetroTreeView there is a little delay cause I got busy these past few months because I moved to another company.




This updated is already uploaded on my GitHub account. If you want to compile it by yourself you can do so. Just check it our here Dennis Magno GitHub Account

Because I am not around for a few months I got a lot of questions and suggestion from my email and comments.  I will try to answer them out as quickly as possible.

Please subscribe to our YouTube Channerl DenRic Denise – INFO 

Liked it? Take a second to support denricdenise on Patreon!

You may also like...