Created
December 5, 2017 20:29
-
-
Save sjehutch/4d4932225540600dca1b17c45bdd4226 to your computer and use it in GitHub Desktop.
save username checkbox xamarin iOS font awesome
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bool saveUserClick; | |
this.saveUserClick = true; | |
partial void BtnSaveUsername_TouchUpInside(UIButton sender) | |
{ | |
if (saveUserClick == true) | |
{ | |
saveUserClick = false; | |
btnSaveUsername.SetTitle("Save Username ", UIControlState.Normal); | |
btnSaveUsername.Font = UIFont.FromName("FontAwesome", 14); | |
} | |
else | |
{ | |
saveUserClick = true; | |
btnSaveUsername.SetTitle("Save Username ", UIControlState.Normal); | |
btnSaveUsername.Font = UIFont.FromName("FontAwesome", 14); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment