在C#中获取复选框状态的问题

时间:2015-12-03 19:30:04

标签: c# winforms

我需要在C#中帮助我这个复选框。我不知道如何获得复选框的状态。我会发送代码,看看是否有人可以帮助我。我想在数据库中创建一个Insert,当我直接在数据库中测试时,我的查询工作得很好,现在我找不到解决方案,如果有人可以帮助我会很棒。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Data.SqlClient;

namespace Program_Sistem_Menaxhimi_Per_Gjykatat
{
    public partial class AddNewEmploee : Form
    {
        public AddNewEmploee()
        {
            InitializeComponent();
        }

        private void label3_Click(object sender, EventArgs e)
        {

        }

        private void createUserAddNewEmploeeButt_Click(object sender, EventArgs e)
        {

        }

        private void confirmAddNewEmploeeButt_Click(object sender, EventArgs e)
        {
            string connectionString = @"Data Source=fp-PC;Initial Catalog=Gjykata;Integrated Security=True";//Connection String
            string sqlcommand = "insert into Puntoret (emri,mbiemri,adresa,telefoni,id_profesionit,isUser,isAdmin,username,passWord) values ('" + emriTextBox.Text + "','" + mbiemriTxtBox.Text + "','" + adresaTxtBox.Text + "','" + telefoniTxtBox.Text + "','" + idEProfTxtBox.Text + "','" + checkBoxUser.ThreeState.ToString() + "','" + checkBoxAdmin.ThreeState.ToString() + "','" + usernameTxtBox.Text + "','" + passwordTxtBox.Text + "')";//Sql command
            SqlConnection connection = new SqlConnection(connectionString);//Creating new Sql Connetion

            if(emriTextBox.Text != "" && mbiemriTxtBox.Text != "" && adresaTxtBox.Text != "" && telefoniTxtBox.Text != "" && idEProfTxtBox.Text != "" && checkBoxUser.ThreeState.ToString() != "False" && checkBoxAdmin.ThreeState.ToString() != "False" && usernameTxtBox.Text != "" && passwordTxtBox.Text != "")
            {
                using (SqlCommand command = new SqlCommand(sqlcommand))
                {
                    command.Connection = connection;
                    command.CommandText = sqlcommand;
                    command.CommandType = CommandType.Text;

                    try
                    {
                        connection.Open();
                        command.ExecuteNonQuery();
                    }
                    finally
                    {
                        connection.Close();
                    }
                }
            }

        }
    }
}

2 个答案:

答案 0 :(得分:2)

而不是ThreeState

checkBoxUser.Checked.ToString();

将返回" true"或" false"

答案 1 :(得分:0)

我会感谢大家的答案,但我实施了另一种解决方案,我认为它更好,因为在我的数据库表Puntoret(Emploees)中我有两个colones,它们是isUser和isAdmin结束这两个colones at at '位'数据类型返回true或false。我的实现是在我写的查询中: checkBoxUser? ' 1' ' 0' checkBoxAdmin? ' 1' ' 0'

在我的"如果是政治家"没有checkBoxes。现在我从移动设备回答你...当我有我的笔记本电脑时,我会发送完整的代码。 但是再次感谢大家。