[Issue(IssueTracker.Bugzilla, 34072, "Inconsistent Disabled Button behavior between Forms for Android & iOS")]
publicclassBugzilla34072:TestContentPage
{
Button_testButton;
Label_reproStepsLabel;
protectedoverridevoidInit()
{
_testButton=newButton(){
Text="Enabled",
TextColor=Color.Yellow,
IsEnabled=true
};
varswitchStateButton=newButton{
Text="Switch Enabled State",
Command=newCommand(SwitchState),
};
_reproStepsLabel=newLabel(){
Text="Tap the 'Switch Enabled State' button. The top button text should be grayed out when the button is Disabled. If the text remains the same color in both states, this is broken."