Download DrawAnimatedImage.zip, last updated 28/10/2017 (567.26 KB)

Download
  • md5: 4a018e6a7814473a37471c9302ac242e
  • sha1: 9c32f16ee743d4338f2e61836b88f8efc3568514
  • sha256: aca4e0a6d1aa4ed63fadecbc6e60039f7249f89abf73555c011ac34c41535da7
// Painting animated images using C#
// http://www.cyotek.com/blog/painting-animated-images-using-csharp
// Copyright © 2017 Cyotek Ltd. All Rights Reserved.

// This work is licensed under the Creative Commons Attribution 4.0 International License.
// To view a copy of this license, visit http://creativecommons.org/licenses/by/4.0/.

using System;
using System.Windows.Forms;

namespace Cyotek.Demo.DrawAnimatedImage
{
  static class Program
  {
    #region Static Methods

    /// <summary>
    /// The main entry point for the application.
    /// </summary>
    [STAThread]
    static void Main()
    {
      Application.EnableVisualStyles();
      Application.SetCompatibleTextRenderingDefault(false);
      Application.Run(new MainForm());
    }

    #endregion
  }
}

Donate

Donate