Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="utf-8" ?>
- <CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
- <CodeSnippet Format="1.0.0">
- <Header>
- <Title>AH Alt A</Title>
- <Shortcut>ah_alta</Shortcut>
- <Description>Code snippet for Key Down Select All</Description>
- <Author>Andrew Hodgson</Author>
- <SnippetTypes>
- <SnippetType>Expansion</SnippetType>
- </SnippetTypes>
- </Header>
- <Snippet>
- <Code Language="csharp">
- <![CDATA[
- if (e.Control && e.KeyCode == Keys.A)
- ((TextBox)sender).SelectAll();
- }
- ]]>
- </Code>
- </Snippet>
- </CodeSnippet>
- </CodeSnippets>
Advertisement
Add Comment
Please, Sign In to add comment