Xamarin按钮点击不起作用

时间:2016-08-20 00:46:34

标签: c# android visual-studio xamarin

我试图制作一个按钮点击就像在Windows论坛中一样,但我做错了,因为没有任何内容写入控制台,按钮的文字也没有改变。为了测试目的,我更改了按钮文本。 另外我知道我连接到SQL数据库的方法是不安全的,但是这个应用程序仅供个人使用,并且现在用于学习目的。无论如何,这是我的代码:

Main.axml代码:

<Button
android:text="Login"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="15"
android:background="@drawable/buttonstyle"
android:id="@+id/buttonLogIn"
android:layout_marginLeft="40dp"
android:layout_marginRight="40dp"
android:drawableLeft="@drawable/lockicon"
android:textStyle="bold"
android:textColor="#FFFFFF" />

MainActivity.cs代码:

using System;
using Android.App;
using Android.Widget;
using Android.OS;
using CryptSharp;
using MySql.Data.MySqlClient;
using System.Data;

namespace App1
{
    [Activity(Label = "TexByte", MainLauncher = true, Theme = "@android:style/Theme.Black.NoTitleBar.Fullscreen", Icon = "@drawable/Logo_Mob2")]
    public class MainActivity : Activity
    {
        private EditText mtxtUsername, mtxtPassword;
        private Button mBtnSignIn;

        protected override void OnCreate(Bundle bundle)
        {
            base.OnCreate(bundle);

            SetContentView(Resource.Layout.Main);
            mBtnSignIn = FindViewById<Button>(Resource.Id.buttonLogIn);
            mtxtUsername = FindViewById<EditText>(Resource.Id.txtUsername);
            mtxtPassword = FindViewById<EditText>(Resource.Id.txtPassword);
        }
        private void mBtnSignIn_Click(object sender, EventArgs args)
        {
            MySqlConnection con = new MySqlConnection("Server=127.0.0.1;User Id=root;Password=password;Database=login;");
            try
            {
                string username = mtxtUsername.Text;
                string password = mtxtPassword.Text;

                if (con.State == ConnectionState.Closed)
                {
                    con.Open();
                    MySqlCommand cmd = new MySqlCommand("SELECT * FROM members WHERE username = '" + username + "' order by password ");
                    cmd.CommandType = CommandType.Text;
                    MySqlDataReader rdr = cmd.ExecuteReader();

                    while (rdr.Read())
                    {

                        string hash = string.Format("{0}", rdr["password"]);
                        Console.WriteLine(hash);

                        if (Crypter.CheckPassword(password, hash))
                        {
                            Console.WriteLine("User name and Password Success ");
                            mBtnSignIn.Text = "Test";
                        }
                        else
                        {
                            Console.WriteLine("Unable to process request. Verify username and password are correct.");
                            mBtnSignIn.Text = "Fail";
                        }
                    }
                }
            }
            catch(MySqlException ex)
            {
                Console.WriteLine("ERROR: Something went wrong. :( ", ex.Message);
            }
            finally
            {
                con.Close();
            }
        }
    }
}

3 个答案:

答案 0 :(得分:1)

您需要将按钮mBtnSignIn与事件处理程序mBtnSignIn_Click连接,以处理按钮单击。这不仅仅是通过命名,你必须手工完成。

最简单的方法是为你的按钮的Click事件提供辅助,并将你的处理程序添加到它:

protected override void OnCreate(Bundle bundle)
{
    // ...

    mBtnSignIn = FindViewById<Button>(Resource.Id.buttonLogIn);
    mBtnSignIn.Click += mBtnSignIn_Click;

    // ...
}

答案 1 :(得分:0)

看起来你正在使用Xamarin.Android,一切都很好,除了你没有为你的按钮添加一个事件处理程序来处理click事件。它可以通过3种简单的方式完成。

@robinmanuelthiel提到了其中两个是:

使用Lambda表达式:

mBtnSignIn.Click += (object o, EvenrArgs e) => {
    //Write your Code..
};

使用委托语法:

mBtnSignIn.Click += delegate {
    //Write your Code..
};

在您的情况下,最好只将事件处理程序添加到按钮中。 在这里,您可以找到更多帮助和代码示例https://developer.xamarin.com/

由于

答案 2 :(得分:0)

我遇到了类似的问题,没有在按钮上调用 Clicked 回调。

这很愚蠢 - 我花了小时才弄明白 - 问题是我在其中一个父控件上设置了 InputTransparent="True" -_-