On a regular switch I can use the following code to set the property of another control:
SharingEnabledToggle.Text = SharingEnabledSwitch.IsToggled ? "Sharing Is Enabled: " : "Enable Sharing: ";
But IsToggled doesn't appear to be implemented in SfSwitch. How would I go about implementing the above statement for an SfSwitch?
John