Omnimaga

General Discussion => Technology and Development => Computer Programming => Topic started by: Binder News on April 10, 2011, 02:14:25 pm

Title: My First C# Program!
Post by: Binder News on April 10, 2011, 02:14:25 pm
So, I just started playing around with VSC#, and I decided to try to recreate something in C# that I had created in Java already.
All it does is allow you to drag the images around the screen. Here is the result. I was just wondering if there is anything else I should add, to expand my knowledge.

EDIT: Added source
Title: Re: My First C# Program!
Post by: Munchor on April 10, 2011, 02:16:03 pm
Can you give us the code? Seems nice. However, I recommend learning syntax in Command Line interface before developing GUI Applications.
Title: Re: My First C# Program!
Post by: SirCmpwn on April 10, 2011, 02:17:24 pm
You can get the code of any CLI (which includes C#) program using RedGate's reflector, unless the code has been obfuscated.
Title: Re: My First C# Program!
Post by: Binder News on April 10, 2011, 02:19:33 pm
Added the source. But I'm really looking for ideas of thing to add, to help me learn the language.
Title: Re: My First C# Program!
Post by: SirCmpwn on April 10, 2011, 02:20:18 pm
Save an image of what it currently looks like, if you want more to add to it.
Title: Re: My First C# Program!
Post by: Munchor on April 10, 2011, 02:21:31 pm
Added the source. But I'm really looking for ideas of thing to add, to help me learn the language.

I tried it, it looks good. However, GIF images are corrupted when added.

I'd say a different cursor after pressing Del Image.

Image lightness is changed when dragged (grabbed to be precise) so we know we're grabbing them.

That should be a fair challenge, not too hard, not too easy.
Title: Re: My First C# Program!
Post by: Binder News on April 10, 2011, 02:22:25 pm
Ok, cool, I'll get right on that!
Title: Re: My First C# Program!
Post by: SirCmpwn on April 10, 2011, 02:22:41 pm
You should be able to use the System.Drawing.Bitmap (http://msdn.microsoft.com/en-us/library/system.drawing.bitmap.aspx) class to do some interesting things with the images.
Title: Re: My First C# Program!
Post by: fb39ca4 on April 10, 2011, 02:58:09 pm
Cool! I wrote my first C# program in third grade. All it did was copy text from one textbox to another. After that, I didn't know what to make.
You shoud add in motion paths for images, and support for animated gifs.
Title: Re: My First C# Program!
Post by: Juju on April 10, 2011, 03:02:02 pm
Nice first C# program :P
Title: Re: My First C# Program!
Post by: Binder News on April 10, 2011, 08:29:25 pm
Cool! I wrote my first C# program in third grade. All it did was copy text from one textbox to another. After that, I didn't know what to make.
You shoud add in motion paths for images, and support for animated gifs.
Ok. I finished the cursor changing, so I'll do that once I get the Image-changing effect in.

Nice first C# program :P
Thanks. :)
Title: Re: My First C# Program!
Post by: Munchor on April 11, 2011, 05:28:08 am
Cool! I wrote my first C# program in third grade. All it did was copy text from one textbox to another. After that, I didn't know what to make.
You shoud add in motion paths for images, and support for animated gifs.
Ok. I finished the cursor changing, so I'll do that once I get the Image-changing effect in.

Nice first C# program :P
Thanks. :)

Have you added image lightness change when grabbed?

I also recommend yet another cursor (a finger-like one, the cursor of links) when you grab them, or maybe the hand cursor!