I have a standard DialogViewControler which adds a Section with a View as the constructor:
Section sec = new Section (new LogoHeaderView (320, 87));
In the LogoHeaderView I add a MT.Dialog GlassButton
btnContact = new GlassButton (frameContact);
btnContact.SetTitle ("Contact", UIControlState.Normal);
btnContact.NormalColor = Settings.ButtonNormalColor;
btnContact.HighlightedColor = Settings.ButtonHighlightColor;
btnContact.Tapped += (obj) => {};
btnContact.Enabled=true;
AddSubview (btnContact);
The view renders nicely, however the button is not clickable and the Tapped event never activates. It’s like it’s not enabled?
How do I get a GlassButton to appear in a View in a Section and work like a button?

It works for me. However if your
GlassButtonis outside yourUIViewlimits it won’t receive the tap events (it’s aUIViewthing not aGlassButtonissue).E.g. This does not work
but change the first line to:
and you’ll be able to click the button.