Update README.md

This commit is contained in:
Ryan Newington
2023-02-03 07:28:43 +11:00
committed by GitHub
parent 511980ef91
commit 5c1360b925
+1 -1
View File
@@ -83,7 +83,7 @@ public override CredentialTile2 CreateUserTile(CredentialProviderUser user)
} }
``` ```
* Create your tile class. Inherit from `CredentialTile2` if you want to create personalized tiles supported by Windows 8 and later, or `CredentialTile2` if you only want to implement a generic tile. Grab the instances of your controls in the `Initialize` method, so you can attach to their properties to read and respond to value changes. Finally, override the `GetCredentials` method, which is called when the user clicks the submit button. * Create your tile class. Inherit from `CredentialTile2` if you want to create personalized tiles supported by Windows 8 and later, or `CredentialTile1` if you only want to implement a generic tile. Grab the instances of your controls in the `Initialize` method, so you can attach to their properties to read and respond to value changes. Finally, override the `GetCredentials` method, which is called when the user clicks the submit button.
```cs ```cs
public class MyTile : CredentialTile2 public class MyTile : CredentialTile2