<?xml version="1.0" encoding="utf-8" ?>
<CodeSnippets
    xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
  <CodeSnippet Format="1.0.0">
    <Header>
      <Title>Double Buffer</Title>
      <Shortcut>DoubleBuffer</Shortcut>
    </Header>
    <Snippet>
      <Code Language="VB">
        <![CDATA[
        Me.SetStyle( _
            ControlStyles.AllPaintingInWmPaint Or _
            ControlStyles.ResizeRedraw Or _
            ControlStyles.OptimizedDoubleBuffer, _
            True)
        Me.UpdateStyles()
]]>
      </Code>
    </Snippet>
  </CodeSnippet>
</CodeSnippets>
