Re: Graphical buttons...?
There is an "Image" property. Would that work for you?
Re: Graphical buttons...?
Quote:
Originally Posted by dcell59
There is an "Image" property. Would that work for you?
Not really, I want a button with a backcolor (not a gray backcolor), but when I make a colourful backcolor the border of the button stays gray and it's ugly :/
Is there a way to color ALL the button?
Re: Graphical buttons...?
I created a button, put an image on it, and then made the FlatStyle "Flat" and turned off the border.
I also made a square red button with no borders by setting the button's BackColor to red and doing the same FlatStyle changes as above.
What else do you want to be able to do?
Re: Graphical buttons...?
Quote:
Originally Posted by dcell59
I created a button, put an image on it, and then made the FlatStyle "Flat" and turned off the border.
I also made a square red button with no borders by setting the button's BackColor to red and doing the same FlatStyle changes as above.
What else do you want to be able to do?
Oh, lolz, it's a command button :/
Now I discovered it
emm... There is a command in the components, but when I it's just don't want to be added to my toolbar
does anybody knows how do I declare on a command-button?
Code:
??? command1 = new System.???
Re: Graphical buttons...?
Quote:
Originally Posted by Talikag
Oh, lolz, it's a command button :/
Now I discovered it
Are you creating a windows form app or a web app? I believe that command buttons are only for web apps (but again, I could be wrong).
/P
Re: Graphical buttons...?
Quote:
Originally Posted by petes1234
Are you creating a windows form app or a web app? I believe that command buttons are only for web apps (but again, I could be wrong).
/P
It's a window application, but Im not able to do somethin like this:
Code:
command x = new System.Web.(...).Command();
I don't know what to do :/, without the command-buttons it's so ugly and tasteless :(
Re: Graphical buttons...?
What's special about a command button that a Windows Forms button doesn't do?
BTW, when working with Windows Forms, it's a good idea to set the Help Index filter to "Windows Forms Development" to help avoid trying to use features from ASP.NET.
Re: Graphical buttons...?
Quote:
Originally Posted by dcell59
What's special about a command button that a Windows Forms button doesn't do?
BTW, when working with Windows Forms, it's a good idea to set the Help Index filter to "Windows Forms Development" to help avoid trying to use features from ASP.NET.
I just can't create a board from normal labels, it looks verrrry bad, emm.. Take a look at the window's minesweeper, those are command buttons (or at least what I want)... If I won't success to create 1 I think Ill do it flat.. :P
Re: Graphical buttons...?
Quote:
Originally Posted by Talikag
Take a look at the window's minesweeper, those are command buttons
I think you may misunderstand what command buttons are. The windows minesweeper game is not an internet app and so cannot use command buttons.
/Pete
Re: Graphical buttons...?
I see what you're talking about. I just assumed you were using the Windows Forms Button control. That's what I based my response on.