In the LayoutStyle.Absolute, views should be able to be moved and resized by changing the Frame property. With Button adjusting the location works, but not size (nothing happens).
That's because it is forced by this method to Height = 1:
int SetWidthHeight (ustring text, bool is_default)
{
int w = text.Length + 4 + (is_default ? 2 : 0);
Width = w;
Height = 1;
return w;
}
Nope. When LayoutStyle.Absolute is set, SetWidthHeight never gets called when Frame changes.
FWIW, the Buttons UI Catalog scenario now has a repro for this Issue (in #601)
