From 5c1360b9251d6077dd1b3c2ca39381f76bf0c1cc Mon Sep 17 00:00:00 2001 From: Ryan Newington Date: Fri, 3 Feb 2023 07:28:43 +1100 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4a62081..140c1aa 100644 --- a/README.md +++ b/README.md @@ -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 public class MyTile : CredentialTile2