CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Dillinger

Search: Search took 0.02 seconds.

  1. Replies
    12
    Views
    80,316

    You have to answer your own questions around here

    Well, I have managed to get quite a way down my list so far. All on my own and unassisted from anyone. Since this post has been up for months and not a single soul has bothered to offer any help...
  2. Replies
    12
    Views
    80,316

    Move Sprite using Mouse in C#

    In this example we can update the Sprite's X coordinates using the Mouse

    /// <Title>Move Dot using Mouse</Title>
    /// <Trademark>Tutorials in plain English by Dillinger</Trademark>
    ///...
  3. Replies
    12
    Views
    80,316

    Sprite Rebounds Off Screen Edge using C#

    In this simple example the Sprite reverses direction when it hits the edge of the screen

    /// <Title>Screen Rebound</Title>
    /// <Trademark>Tutorials in plain English by Dillinger</Trademark>
    ///...
  4. Replies
    12
    Views
    80,316

    Exit C# Application using Escape Key

    This simple Form window Exits the application when you press the Escape Key

    /// <Title>Exit using Escape Key</Title>
    /// <Trademark>Tutorials in plain English by Dillinger</Trademark>
    ///...
  5. Replies
    12
    Views
    80,316

    Infinite 2D Screen in C#

    This creates an endless screen.
    When sprite exits on right side of screen,
    it reappears again on the left

    /// <Title>Infinite Screen</Title>
    /// <Trademark>Tutorials in plain English by...
  6. Replies
    12
    Views
    80,316

    Simple Animation using C#

    This is a very very rudimentary example of animation
    using the C# Timer class to trigger a simple OnPaint render loop
    which moves a dot across the screen

    /// <Title>Simple Animation</Title>
    ///...
  7. Replies
    12
    Views
    80,316

    Move Sprite using Arrow Keys in C#

    This is a simple example of Event Based movement.
    The render loop is called only if an Event is triggered, like a key being pressed.
    Otherwise no resources are used

    /// <Title>See Dot Move...
  8. Replies
    12
    Views
    80,316

    Draw a Dot using C# simplified

    We can use the default pen width of 1 to draw a dot
    as long as our rectangle size is no larger that 1

    /// <Title>Draw a Dot Simplified</Title>
    /// <Trademark>Tutorials in plain English by...
  9. Replies
    12
    Views
    80,316

    Draw a Dot using C# simplified

    This example draws a line which is one point long:

    /// <Title>Draw a Dot using a very short line</Title>
    /// <Trademark>Tutorials in plain English by Dillinger</Trademark>

    using System;
    using...
  10. Replies
    12
    Views
    80,316

    Draw a Dot using C#

    No matter where I looked, there didn't seem to be a command for drawing a simple dot in C#. The best I could come up with is you draw a rectangle which is 1 X 1


    /// <Title>Draw a Dot</Title>...
  11. Replies
    12
    Views
    80,316

    C# Game Code Samples I would like to see ....

    Hi,
    I'm trying to learn game programming with C# and was just looking for some very rudimentary examples. I would just like to see some very basic code samples which each do one simple thing. I drew...
Results 1 to 11 of 11





Click Here to Expand Forum to Full Width

Featured