ideas...
-
Does anyone know places where I can learn more about visuals for C#, like, blurring, softening and things like that? Also, is there a way to set events for graphics you've drawn, like click and hold? Finally, are there any sounds that are already on the computer besides system sounds to use? Thanks in advance.
The most knowledge doesn't mean the most wise...
-
Does anyone know places where I can learn more about visuals for C#, like, blurring, softening and things like that? Also, is there a way to set events for graphics you've drawn, like click and hold? Finally, are there any sounds that are already on the computer besides system sounds to use? Thanks in advance.
The most knowledge doesn't mean the most wise...
MasterSharp wrote:
Does anyone know places where I can learn more about visuals for C#, like, blurring, softening and things like that?
That depends on if you are talking about graphics, windows forms or WPF.
MasterSharp wrote:
is there a way to set events for graphics you've drawn, like click and hold?
Graphics that you have drawn are just differently coloured pixels, they can't handle events. If you want evens, you need controls.
--- "Anything that is in the world when you're born is normal and ordinary and is just a natural part of the way the world works. Anything that's invented between when you're fifteen and thirty-five is new and exciting and revolutionary and you can probably get a career in it. Anything invented after you're thirty-five is against the natural order of things." -- Douglas Adams
-
MasterSharp wrote:
Does anyone know places where I can learn more about visuals for C#, like, blurring, softening and things like that?
That depends on if you are talking about graphics, windows forms or WPF.
MasterSharp wrote:
is there a way to set events for graphics you've drawn, like click and hold?
Graphics that you have drawn are just differently coloured pixels, they can't handle events. If you want evens, you need controls.
--- "Anything that is in the world when you're born is normal and ordinary and is just a natural part of the way the world works. Anything that's invented between when you're fifteen and thirty-five is new and exciting and revolutionary and you can probably get a career in it. Anything invented after you're thirty-five is against the natural order of things." -- Douglas Adams
Ah... I mean graphics. Well, I had an idea where you could grab a circle by clicking and holding and move it, and release the click to drop it... It's for another simple game I thought I could achieve...
The most knowledge doesn't mean the most wise...
-
Ah... I mean graphics. Well, I had an idea where you could grab a circle by clicking and holding and move it, and release the click to drop it... It's for another simple game I thought I could achieve...
The most knowledge doesn't mean the most wise...
Here's [^] about as simple an example as I can find.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007 -
Here's [^] about as simple an example as I can find.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007Hey, I'll take anything. Thanks a lot!
The most knowledge doesn't mean the most wise...
-
Hey, I'll take anything. Thanks a lot!
The most knowledge doesn't mean the most wise...
Also, is there any way to make lines in an app anti-aliased?
The most knowledge doesn't mean the most wise...
-
Also, is there any way to make lines in an app anti-aliased?
The most knowledge doesn't mean the most wise...
MasterSharp wrote:
Also, is there any way to make lines in an app anti-aliased?
Yes. If you are drawing in a graphics container, you can set the SmoothingMode to AntiAlias. This will not affect the text, but will affect lines in the container. Check out the MSDN documentation for Graphics.SmoothingMode. Marshall
If you continue to do the same things you always did,
don't be surprised if you get the same results you always got. -
MasterSharp wrote:
Also, is there any way to make lines in an app anti-aliased?
Yes. If you are drawing in a graphics container, you can set the SmoothingMode to AntiAlias. This will not affect the text, but will affect lines in the container. Check out the MSDN documentation for Graphics.SmoothingMode. Marshall
If you continue to do the same things you always did,
don't be surprised if you get the same results you always got.Where is smoothingmode? Is it an extra using statement? Also, do you know the code to, while the mouse is clicked over a picturebox, that you can drag it around? I checked out the drag and drop events, but I don't see... Thanks, tough.
The most knowledge doesn't mean the most wise...
-
Where is smoothingmode? Is it an extra using statement? Also, do you know the code to, while the mouse is clicked over a picturebox, that you can drag it around? I checked out the drag and drop events, but I don't see... Thanks, tough.
The most knowledge doesn't mean the most wise...
I found smoothingmode. Thanks, but can you still help with the other thing?
The most knowledge doesn't mean the most wise...
-
I found smoothingmode. Thanks, but can you still help with the other thing?
The most knowledge doesn't mean the most wise...
Can I use more than one of the coices in smoothingmode at once?
The most knowledge doesn't mean the most wise...
-
Can I use more than one of the coices in smoothingmode at once?
The most knowledge doesn't mean the most wise...
-
I found smoothingmode. Thanks, but can you still help with the other thing?
The most knowledge doesn't mean the most wise...
Pardon me for saying so, but it sounds to me like you are in way over your head. You are simply writing code without any understanding of what it means. I suggest you slow down, read and understand the documentation. Then think about how each object works and how you can manipulate it to accomplish your goal. If you do that, you will quickly see the answer to your question. Getting fast answers on the web is not going to help you in the long run. I am not trying to insult you and hope you see that. I am only trying to give you good advice. Marshall
If you continue to do the same things you always did,
don't be surprised if you get the same results you always got. -
No you can't use more than one choice. Marshall
If you continue to do the same things you always did,
don't be surprised if you get the same results you always got.Do you know anything about the dragging thing?
The most knowledge doesn't mean the most wise...
-
Pardon me for saying so, but it sounds to me like you are in way over your head. You are simply writing code without any understanding of what it means. I suggest you slow down, read and understand the documentation. Then think about how each object works and how you can manipulate it to accomplish your goal. If you do that, you will quickly see the answer to your question. Getting fast answers on the web is not going to help you in the long run. I am not trying to insult you and hope you see that. I am only trying to give you good advice. Marshall
If you continue to do the same things you always did,
don't be surprised if you get the same results you always got.Yes, I understand, and I know a bit more than how I seem, though I'm undoubtably a beginner.THat was a stupid question if I could use more than one...
The most knowledge doesn't mean the most wise...