The ProgrammersTalk Community
Forum Register Search Today's Posts Mark Forums Read
Register

Go Back   The ProgrammersTalk Community > General Programming > C#


Welcome to the The ProgrammersTalk Community forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.
Tags: , ,

Reply
 
LinkBack Thread Tools    Display Modes   
  #1 (permalink)  
Old 08-07-2007, 12:42 AM
HelloWorld's Avatar
HelloWorld HelloWorld is offline
PT Admin
Awards Showcase
Quality Tutorial 
Total Awards: 1
Join Date: Jun 2007
Location: In front of computer...
Posts: 1,119
iTrader: (0)
HelloWorld is a jewel in the roughHelloWorld is a jewel in the roughHelloWorld is a jewel in the rough
Icon13 How to add ActionListener in C#

I want to build some GUI application with C#. I created the GUI already, but it's just a plain without any action lol... so I want to make some action when a button is clicked. Does anybody know how to add ActionListener (in Java) for C# GUI application?

__________________
PHP Code:
System.out.println("Hello World!"); 

Digg this Post! Del.Icio.Us this Post! Technorati this Post! Furl this Post! Mister Wong this Post! Newsvine this Post! Spurl this Post! Reddit this Post! Netscape this Post!
Reply With Quote
  #2 (permalink)  
Old 08-07-2007, 02:17 AM
rpgfan3233 rpgfan3233 is offline
PT Staff
Awards Showcase
Quality Tutorial Quality Tutorial Quality Tutorial Quality Tutorial 
Total Awards: 4
Join Date: Jul 2007
Posts: 118
iTrader: (0)
rpgfan3233 has a spectacular aura aboutrpgfan3233 has a spectacular aura aboutrpgfan3233 has a spectacular aura aboutrpgfan3233 has a spectacular aura aboutrpgfan3233 has a spectacular aura about
Courtesy of Migrating Java Source Code To C# -

Java code:
Code:
ActionListener al;
al = new ActionListener()
    {
    public void actionPerformed(ActionEvent ae)
        {
            try
            {
                double value = Double.parseDouble(
                    txtDegrees.getText());
                double result = (value-32.0)*5.0/9.0;
                lblResult.setText("Celsius = "+result);
            }
            catch (NumberFormatException nfe)
            {
                JOptionPane.showMessageDialog(
                    null, "Bad input");
            }
        }
    };

final JButton btnToC = new JButton("To Celsius");
btnToC.addActionListener(al);
C# code:
Code:
Button btnToC = new Button();
btnToC.Text = "To Celsius";
btnToC.Location = new Point(
    ANCHORX,
    lblResult.Location.Y+lblResult.Height*2);
btnToC.Size = btnToC.PreferredSize;
btnToC.Click += new EventHandler(btnToC_Click);
// skipping a few lines
public void btnToC_Click(object ob, EventArgs e)
{
    double degrees = 0.0;

    try
    {
        degrees = Double.Parse(txtDegrees.Text);
    }
    catch (Exception)    // Unlike Java, an exception 
                        // variable is not needed if
                        // it will not be used by the 
                        // exception handler.
    {
        MessageBox.Show("Bad input", 
            "Tempverter", MessageBoxButtons.OK, 
            MessageBoxIcon.Exclamation);
        return;
    }

    lblResult.Text = "Celsius = "+((degrees-32.0)*5.0/9.0);
}
From what I can see, you add a new event handler to the Click property of the button (note the += operator on the line btnToC.Click += new EventHandler(btnToC_Click);, hence the reason why I typed "add" rather than "set"). btnToC_Click is the name of the method that is used as the event handler. You then create the method.

I'm hope that helps you with your question!

Edit: I found that by using the Google search query "ActionListener Java to C#" (without the quotes). I recommend trying something similar. It worked well for me, so maybe it will help you!

__________________
"C makes it easy to shoot yourself in the foot; C++ makes it harder, but when you do it blows your whole leg off."
-- Bjarne Stroustrup, creator of what is now known as C++
For more quotes by Bjarne Stroustrup, check out http://www.research.att.com/~bs/bs_faq.html#really-say-that.
Digg this Post! Del.Icio.Us this Post! Technorati this Post! Furl this Post! Mister Wong this Post! Newsvine this Post! Spurl this Post! Reddit this Post! Netscape this Post!

Last edited by rpgfan3233 : 08-07-2007 at 02:19 AM. Reason: Added a quick tip
Reply With Quote
The Following User Says Thank You to rpgfan3233 For This Useful Post:
HelloWorld (08-07-2007)
Reply

« File Format | Book? »

Thread Tools
Display Modes

   Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -7. The time now is 07:28 AM. Powered by vBulletin
Copyright © 2000 - 2007, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO © 2007 ProgrammersTalk Sedo - Buy and Sell Domain Names and Websites project info: programmerstalk.net Statistics for project programmerstalk.net etracker® web controlling instead of log file analysis


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50