I would like the text color of a disabled SfAutoComplete to be the same color as an enabled SfAutoComplete. After setting a global style with my intended visual states for the SfAutoComplete, I'm unable to see the expected changes when my control is disabled. The documentation doesn't explain how to customize the visual states so I'm not sure if I have included the correct visual states. Here's the code I've included in my App.xaml:
<Style TargetType="cc:MySfAutoComplete">
<Setter Property="ShowClearButton" Value="False"/>
<Setter Property="VisualStateManager.VisualStateGroups">
<VisualStateGroupList>
<VisualStateGroup x:Name="CommonStates">
<VisualState x:Name="Normal"/>
<VisualState x:Name="Focused"/>
<VisualState x:Name="Disabled">
<VisualState.Setters>
<Setter Property="TextColor" Value="Black"/>
</VisualState.Setters>
</VisualState>
</VisualStateGroup>
</VisualStateGroupList>
</Setter>
</Style>