button

WPF Button - Method when pressed

I want to call a method when a button is in the down stated (IsPressed) and another method when it is released. I can't seem to figure out a simple way to do this. Thanks! ...

Button styling using CSS background image

I have used background image and css border to a button. It looks good in Firefox but IE does not show it correctly. The top border is not aligned with left, right borders in IE. How to correct it in IE? Below links for your reference.Screen shot IESelectorScreen shot Firefox ...

WPF changing button background color when the window is disabled

I have a button with a transparent background on a wpf window. Problem is, when I open up another window with a .showdialog the form becomes disabled as does the button, causing the button to go white (and stick out like a sore thumb); the same happens to the listview and textbox controls. Labels and group boxes aren't impacted in this...

Back Button with iFrames

I'm using an iframe to display content that has links. When the user clicks around in the iFrame and hits "back," it goes back in the iFrame. This behavior is OK. However, once they're back to the first page of the iFrame and they hit "back" again, the entire window is taken back to the previous page. This is unwanted. To prevent th...

How do I completely replace the content of a WPF button with a graphic path?

I've deconstructed a standard WPF button using Blend and have managed to create a nicely styled button, but I cannot figure out how to make the path fill the interior of the button space (the button width and height). I am also not sure if I need to specify ContentPresenter or even if it is correct. I am after the text in the middle of t...

How to display Yes/No Button in asp.net page using Javascript

I have to display yes/no button on some condition on my asp.net page , I used windows.confirm() to display that but windows.confirm displays Ok/Cancel Button , Is there any way I can display Yes/No Button in asp.net page instead of Ok/Cancel using Javascript ? ...

"Pin" a class to the selected radio button?

I'm trying to add a class to the selected radio input and then remove that class when another radio of the same type is selected The radio buttons have the class 'radio_button' but i can't get the class to change with the below code. jQuery(".radio_button").livequery('click',function() { $('input.radio_button :radio').focus...

Curing the "Back Button Blues"

Ever stumbled on a tutorial that you feel is of great value but not quite explained properly? That's my dilemma. I know THIS TUTORIAL has some value but I just can't get it. Where do you call each function? Which function should be called first and which next, and which third? Will all functions be called in all files in an applicatio...

Looping buffered paint animations for custom default buttons in Vista

We custom draw our push buttons in Vista, which allows us to use the fading / BufferedPaintAnimation features. However one thing that has eluded me is how to handle the default button. This is the one that continues fading (pulsing) that is not in response to user action. I have considered setting a timer for the animation duration, but ...

Best way to code stackoverflow style 'questions' / 'tags' rollover buttons

Whats the best way to implement rollover 'buttons' like Stackoverflow has for 'Questions', 'Tags', 'Users' at the top. It is actually implemented like this : <div class="nav"> <ul class="primarynav"> <li class=""> <a href="/questions">Questions</a> </li> <li class=""> <a href="/tags">...

C++ Custom GUI Button Question

Hello! I am designing a graphical application for which I've decided to write my own menu. I would like this menu to be platform independent. For the time being, my menu will mostly consist of a number of buttons. My issue involves the handling of events when a button is clicked. My dilemma is with a button "knowing" about the conte...

smartphones and buttons

The .net compact framework on smartphones doesn't know the button component, the reasons are unknown to me. My question is: how do people usually get over this problem? I have know smartphone near me to check out, only a pda phone, which of course has touch screen and supports the button component. What would you do ? ...

Silverlight: Transparent image on button

I would like to use a transparent png file on a silverlight button. In addition I would like the button itself to be transparent so the background (behind the button) shows through. I find that if I set the opacity of the button it also affects the image. I don't want the entire image to be transparent - just the transparent parts of it ...

Adding button into a Listview in WinForms

Is there a way to add a button control to a cell in inside a ListView in a WinForms app? ...

ASP.NET Dynamic Radiobutton - How to add validation

At the moment I have something like this ` <%# Eval("orderBy").ToString()%>) <%# Eval("question").ToString()%> " type="radio" id="True" value="True" class="styled" /> " type="radio" id="False" value="False" class="styled" /> ` And in the code behind I caputure the values as Request.Form("question1") for example and this a...

Dojo Toolbox: Closing the dialog Box

Is there a way to set a button inside the dojo dialog box and have it close the dialog box it is residing in? Putting dijits inside of dijits doesn't work, and I can't beleive there isn't a way to do that. ...

<button> vs. <input type="button" />. Which to use?

When looking at most sites (including SO), most of them use: <input type="button" /> instead of: <button></button> What are the main differences between the two, if any? Are there valid reasons to use one instead of the other? Are there valid reasons to use combine them? Does using <button> come with compatibility issues, seeing i...

WPF: Create half elliptical button

I dont think this is quite possible, but its worth a shot to see what you guys say. I am trying to create a half-elliptical button in C# (not XAML, that might through another curve ball). If I wanted a pre-determined size for the buttons, I would just use images or something like that, but thats not the case since the size changes. Here ...

Firefox 2 - HTML button is just solid grey. All other browsers fine: wtf?

Hello all, I have a site that has a simple HTML button in a form. All browsers show this button correctly. However, in Firefox 2 and Seamonkey it appears just as a solid grey square that cannot be clicked on and that has no text. <input id="getaudiobutton" type="button" value="Get Audio" onclick="convert()" /> For those of you that h...

Android : Multiple Actions on a List View - Focus Issue

I would like to implement a ListView, which I can do no problem w/ my cursor. Right now depending on which row you click on it takes you to a new activity based on the information pressed on that row (just like it should, and as expected). I would like to have a button however to delete the row, so a user can press any part of the row to...